23 lines
639 B
HTML
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> |