钟表的lodding效果

 

  •  /* 改变中心点 */
  •         transform-origin: center bottom;
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      @keyframes clock {
        from {
          transform: rotate(0);
        }
        to {
          transform: rotate(360deg);
        }
      }
      * {
        margin: 0;
        padding: 0;
        list-style: none;
        box-sizing: border-box;
      }
      .item {
        width: 200px;
        height: 200px;
        background-color: #5a4e8c;
        margin: 10px;
        position: relative;
      }
      .clock {
        width: 160px;
        height: 160px;
        border: 5px solid white;
        border-radius: 50%;
        position: absolute;
        left: 20px;
        top: 20px;
      }
      .zhen1 {
        width: 4px;
        height: 70px;
        background-color: white;
        position: absolute;
        left: 98px;
        top: 30px;
        /* 改变中心点 */
        transform-origin: center bottom;
        animation: clock 2s linear infinite;
      }
      .zhen2 {
        width: 4px;
        height: 50px;
        background-color: white;
        position: absolute;
        left: 98px;
        top: 50px;
        transform-origin: center bottom;
        animation: clock 3s linear infinite;
      }
    </style>
  </head>
  <body>
    <div class="item">
      <div class="clock"></div>
      <div class="zhen1"></div>
      <div class="zhen2"></div>
    </div>
  </body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值