Files
stupidsimcpp/web/index.html
Yggdrasil75 fc1e73d874 split files
2025-11-06 08:18:49 -05:00

23 lines
639 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Dynamic Gradient Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Dynamic Gradient Generator</h1>
<div class="controls">
<button onclick="refreshImage()">Refresh Image</button>
<button onclick="toggleAutoRefresh()" id="autoRefreshBtn">Start Auto-Refresh (30s)</button>
</div>
<div class="image-container">
<img id="gradientImage" src="gradient.jxl" alt="Dynamic Gradient">
</div>
<script src="script.js"></script>
</body>
</html>