js中一个简单的表

在这里插入图片描述

  <div class="clock">
        <div class="circle"></div>
        <div class="hour"></div>
        <div class="minutes"></div>
        <div class="seconds"></div>


        <!-- 添加数字1-12 -->
        <div class="nums"> </div>

    </div>
 * {
            margin: 0;
            padding: 0;
        }

        .clock {
            position: relative;
            width: 200px;
            height: 200px;
            border: solid 14px rgb(247, 129, 149);
            border-radius: 50%;
            margin: 100px auto;
            background: linear-gradient( rgb(190, 155, 223),pink);

        }
        .circle{
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            width: 12px;
            height: 12px;
            background-color: black;
            border-radius: 50%;
            
            /* 优先显示它 */
            z-index: 5;
        }
        .hour {
            position: absolute;
            left: 49.5%;
            top: 48px;
            width: 4px;
            height: 50px;
            background-color: blue;
            
		/* steps(60)--分60步走*/
            animation: run 21600s steps(60) infinite;

            /* 绕着底部旋转 */
            transform-origin: bottom;

            z-index: 3;

        }
        .minutes {
            position: absolute;
            left: 49.5%;
            top: 28px;
            width: 3px;
            height: 70px;
            background-color: rgb(240, 83, 83);

            animation: run 3600s steps(60) infinite;

            transform-origin: bottom;
            z-index: 2;

        }
        .seconds {
            position: absolute;
            left: 50%;
            top: 2px;
            width: 2px;
            height: 96px;
            background-color: pink;
            animation: run 60s steps(60) infinite;
            transform-origin: bottom;
        }

        .ps {
            width: 100%;
            height: 100%;
        }
        .number {
            position: absolute;
            left: 50%;
            width: 10px;
            height: 98px;
            transform-origin: bottom;
            color: rgb(230, 53, 156);
            font-weight: bold;
            font-size: 20px;
        }
        .number:last-child {
            left: 47%;
        }
        @keyframes run {
            0% {
                transform: rotate(0);
            }
            100% {
                transform: rotate(360deg)
            }
        }
 <script>

        var nums = document.querySelector('.nums')

        var dd = 30;

        for (var i = 1; i < 13; i++) {

            // 创建一个div保存数字
            var number = document.createElement('div');
            number.className = 'number';

            // 下标就是对应的数字1-12
            number.innerText = i;

            // 追加到页面中
            nums.appendChild(number);

            // 数字分别旋转对应的角度
            number.style.transform = "rotate(" + dd + "deg)";

            // 确定要旋转的度数----30deg/60deg/90deg.....
            if (dd < 360) {
                dd += 30;
            }
        }
         </script>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值