38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
|
<!doctype html>
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<title>Seasonal Hours Clock</title>
|
|||
|
<meta charset="utf-8">
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|||
|
<link rel="stylesheet" href="style.css">
|
|||
|
<script src="moment-with-locales.min.js"></script>
|
|||
|
<script src="moment-timezone-with-data.min.js"></script>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<div id="marker"></div>
|
|||
|
<div id="utc-hours"><div id="utc-hours-inner"></div></div>
|
|||
|
<div id="hour-names"><div id="hour-names-inner"></div></div>
|
|||
|
<div id="hour-icons"><div id="hour-icons-inner"></div></div>
|
|||
|
<div id="local-hours"><div id="local-hours-inner"></div></div>
|
|||
|
<div id="current-time-wrapper"><div id="current-time"></div></div>
|
|||
|
<div id="settings-button">⚙️</div>
|
|||
|
<div id="settings-wrapper">
|
|||
|
<div id="settings-close">×</div>
|
|||
|
<div id="settings">
|
|||
|
<h2>Settings</h2>
|
|||
|
<p>Changes are saved immediately!</p>
|
|||
|
<div id="timezone-changer">
|
|||
|
<span>Time zone</span><select id="timezone-selector"></select><br>
|
|||
|
</div>
|
|||
|
<div id="locale-changer">
|
|||
|
<span>Locale</span><select id="locale-selector"></select><br>
|
|||
|
</div>
|
|||
|
<div id="show-seconds">
|
|||
|
<span>Show seconds</span><input type="checkbox" id="show-seconds-option">
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<script src="clock.js"></script>
|
|||
|
</body>
|
|||
|
</html>
|