CSS鸭子表

在这里插入图片描述

/* 核心就是,分别给时针、分针、秒针分别都套一个容器,然后让容器转动
   也可以使用transform-origin定义旋转的基点
   重要的相对定位和绝对定位的应用(其中的百分比是相对于包含块而言的)
   还有元素居中的方法
 */
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        * {
            margin: 0;
        }

        .box {
            width: 400px;
            height: 400px;
            /* background-color: silver; */
            position: relative;
            margin: 10px auto;
            border-radius: 50%;
            background-image: url(./img/bg3.jpg);
            background-size: contain;
        }

        .box > div {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
        }
       
        .sec-wrapper {
            width: 80%;
            height: 80%;
            /* background-color: #bfa; */
            animation: r 10s steps(60,end) infinite;
        }

        .sec {
            height: 50%;
            background-color: red;
            width: 2px;
            left: 0;
            right: 0;
            margin: 0 auto;
        }

        .min-wrapper {
            width: 60%;
            height: 60%;
            /* background-color: #bfa; */
            animation: r 600s steps(60,end) infinite;
        }

        .min {
            height: 50%;
            background-color: greenyellow;
            width: 4px;
            left: 0;
            right: 0;
            margin: 0 auto;
        }

        .hour-wrapper {
            width: 30%;
            height: 30%;
            /* background-color: #bfa; */
            animation: r 3600s steps(60,end) infinite;
        }

        .hour {
            height: 50%;
            background-color: rgb(47, 217, 255);
            width: 6px;
            left: 0;
            right: 0;
            margin: 0 auto;
        }

        @keyframes r {
            from {
                transform: rotateZ(0)
            }

            to {
                transform: rotateZ(360deg)
            }
        }

    </style>
</head>
<body>
    <div class="box">

        <div class="sec-wrapper">
            <div class="sec"></div>
        </div>

        <div class="min-wrapper">
            <div class="min"></div>
        </div>

        
        <div class="hour-wrapper">
            <div class="hour"></div>
        </div>


    </div>
</body>
</html>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值