38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
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>
|
|
<button onclick="showStats()" id="statsBtn">Show Performance Stats</button>
|
|
<button onclick="clearStats()" id="clearStatsBtn">Clear Stats</button>
|
|
</div>
|
|
|
|
<div class="image-container">
|
|
<img id="gradientImage" src="./output/gradient.jxl" alt="Dynamic Gradient">
|
|
</div>
|
|
|
|
<div id="statsPanel" class="stats-panel" style="display: none;">
|
|
<div class="stats-header">
|
|
<h3>Performance Statistics</h3>
|
|
<button onclick="hideStats()" class="close-btn">×</button>
|
|
</div>
|
|
<div id="statsContent" class="stats-content">
|
|
<!-- Stats will be loaded here -->
|
|
</div>
|
|
</div>
|
|
|
|
<div id="status" class="status"></div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|