CSS模拟时钟是一种使用CSS动画和布局技巧来创建动态时钟效果的技术。它不依赖于JavaScript或其他编程语言,完全通过CSS实现时钟的指针运动和时间显示。
以下是一个简单的CSS指针时钟示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Clock</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.clock {
width: 200px;
height: 200px;
border-radius: 50%;
background-color: #fff;
border: 10px solid #000;
position: relative;
}
.hand {
position: absolute;
bottom: 50%;
left: 50%;
transform-origin: bottom;
background-color: #000;
}
.hour-hand {
width: 6px;
height: 50px;
transform: translate(-50%, 0) rotate(30deg);
animation: hour 12s linear infinite;
}
.minute-hand {
width: 4px;
height: 70px;
transform: translate(-50%, 0) rotate(360deg);
animation: minute 60s linear infinite;
}
.second-hand {
width: 2px;
height: 80px;
transform: translate(-50%, 0) rotate(360deg);
animation: second 60s linear infinite;
}
@keyframes hour {
from { transform: translate(-50%, 0) rotate(0deg); }
to { transform: translate(-50%, 0) rotate(360deg); }
}
@keyframes minute {
from { transform: translate(-50%, 0) rotate(0deg); }
to { transform: translate(-50%, 0) rotate(360deg); }
}
@keyframes second {
from { transform: translate(-50%, 0) rotate(0deg); }
to { transform: translate(-50%, 0) rotate(360deg); }
}
</style>
</head>
<body>
<div class="clock">
<div class="hand hour-hand"></div>
<div class="hand minute-hand"></div>
<div class="hand second-hand"></div>
</div>
</body>
</html>
will-change
属性优化动画性能。通过以上方法,可以创建一个简单且性能良好的CSS模拟时钟。
领取专属 10元无门槛券
手把手带您无忧上云