94 lines
2.4 KiB
HTML
94 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CoBiE Analog Clock</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<style>
|
|
body, html {
|
|
height: 100%;
|
|
margin: 0;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
|
|
color: #e0e0e0;
|
|
}
|
|
.analog-clock-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
#clock {
|
|
position: relative;
|
|
width: 80vmin;
|
|
height: 80vmin;
|
|
border: 2px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle at center, #0a0e27 0%, #1a1f3a 100%);
|
|
box-shadow: 0 0 25px rgba(0, 255, 255, 0.2), inset 0 0 40px rgba(255, 0, 255, 0.2);
|
|
}
|
|
#clock::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 1.2em;
|
|
height: 1.2em;
|
|
transform: translate(-50%, -50%);
|
|
background: #ffffff;
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
|
|
}
|
|
.marker {
|
|
position: absolute;
|
|
width: 2em;
|
|
height: 2em;
|
|
text-align: center;
|
|
line-height: 2em;
|
|
font-family: 'Courier New', monospace;
|
|
font-size: 1.1em;
|
|
color: #ffffff;
|
|
text-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
.hand {
|
|
position: absolute;
|
|
bottom: 50%;
|
|
left: 50%;
|
|
transform-origin: bottom;
|
|
transition: transform 0.5s ease-in-out;
|
|
border-radius: 2px;
|
|
}
|
|
.hand.xeno {
|
|
width: 4px;
|
|
height: 40%;
|
|
background: #00ffff;
|
|
box-shadow: 0 0 6px #00ffff;
|
|
}
|
|
.hand.quantic {
|
|
width: 3px;
|
|
height: 35%;
|
|
background: #ff00ff;
|
|
box-shadow: 0 0 6px #ff00ff;
|
|
}
|
|
.hand.chronon {
|
|
width: 2px;
|
|
height: 30%;
|
|
background: #ffff00;
|
|
box-shadow: 0 0 6px #ffff00;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="analog-clock-container">
|
|
<div id="clock">
|
|
<div class="hand chronon" id="handChronon"></div>
|
|
<div class="hand quantic" id="handQuantic"></div>
|
|
<div class="hand xeno" id="handXeno"></div>
|
|
</div>
|
|
</div>
|
|
<script src="clock.js"></script>
|
|
</body>
|
|
</html>
|