模拟钟表的转动

Posted 野得像风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模拟钟表的转动相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>练习</title>
    
</head>
<style type="text/css">
    * {
    margin: 0;
    padding: 0;
}
@keyframes minute {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes second {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }    
}
.time {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #F2D298;
    border:5px solid #F2D298;
    margin:0 auto;
    position: relative;
}
.minute {
    width: 10px;
    height: 100px;
    background-color: #F4EBEB;
    position: absolute;
    left: 150px;
    top: 60px;
    /*ainimation:name duration timing-function delay iteration-count direction;*/
    animation: minute 3600s linear 0s infinite;
    transform-origin:5px bottom;
}
.second {
    width: 7px;
    height: 140px;
    background-color: #F4EBEB;
    position: absolute;
    left: 2px;
    top: -40px;
    animation:second 60s linear 0s infinite;
    transform-origin:2px bottom;
}
</style>
<body>
<!-- 实现钟表动画 -->
    <div class="time">
        <div class="minute">
            <div class="second"></div>
        </div>
    </div>
</body>
</html>

以上是使用简单的css3动画实现的,有兴趣的朋友可以完善下,欢迎指点

以上是关于模拟钟表的转动的主要内容,如果未能解决你的问题,请参考以下文章

第四周程序设计

2019春第3次课程设计实验安排

2019春第三次课程设计实验报告

用canvas模拟钟表

POJ 1166 The Clocks

华为OD机试真题 C++ 实现钟表重合时刻2023 Q1 | 200分