账号  

密码  

<<返回列表下一个上一个收藏 打印本文 复制本文地址

459

查看

0

回复
主题:仅使用 CSS 旋转制作八卦迷惑动画 [收藏主题]  
lan988 当前离线

288

主题

210

广播

31

粉丝
添加关注
级别:管理员
用户积分:182 分
登录次数:1101 次
注册时间:2007-3-30
最后登录:2024-11-27
lan988 发表于:2023-12-15 0:34:06   | 只看该作者 查看该作者主题 楼主 
<!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>yinyang</title>
  <style>
    body {
      background-color: #eee;
    }
    .circle {
      margin-top: 3rem;
      box-sizing: border-box;
      height: 200px;
      width: 200px;
      border-radius: 50%;
      padding-left: 50px;
      background-image: linear-gradient(to left, #fff, #fff 50%, #000 50%, #000);
      animation: roll 10s linear infinite;
      /* 反向旋转 */
      animation-direction: reverse;
    }
    .yinyang {
      position: relative;
      background-color: #fff;
      height: 100px;
      width: 100px;
      border-radius: 50%;
      background-image: linear-gradient(to left, #fff, #fff 50%, #000 50%, #000);
      /* 4秒中完成一次匀速动画,并循环播放 */
      animation: roll 4s linear infinite; 
    }
    .yinyang::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border: 18px solid #000;
      border-radius: 50%;
      width: 14px;
      height: 14px;
    }
    .yinyang::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #000;
      border: 18px solid #fff;
      border-radius: 50%;
      width: 14px;
      height: 14px;
    }
    @keyframes roll {
      from {
        /* 从零度开始 */
        transform: rotate(0deg); 
      }
      to {
        /* 旋转一周 */
        transform: rotate(-360deg); 
      }
    }
  </style>
</head>
<body>
  <div class="circle">
    <div class="yinyang"></div>
    <div class="yinyang"></div>
  </div>
</body>
</html>
 
 
专业从事风水,命理,择日,取名等。
本站是提供个人知识管理的网络存储空间,所有非本站原创内容均由用户发布,不代表本站观点。如发现有害或侵权内容,请点击这里 举报
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
<下一主题 | 上一主题 >
风水自学网有限公司 © 2016-2025 版权所有 页面执行0.08594秒 powered by KesionCMS 9.0