split files

This commit is contained in:
Yggdrasil75
2025-11-06 08:18:49 -05:00
parent 368ac295a6
commit fc1e73d874
4 changed files with 209 additions and 110 deletions

23
web/index.html Normal file
View File

@@ -0,0 +1,23 @@
<!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>