纯css实现太极八卦图

感觉最近好像闯鬼了,赶紧写个八卦图避避邪,开玩笑了,不废话,上菜,看效果上代码。
  • 效果
  • 代码,你们都是大佬,这里就不解释代码了 (hover会转动喔)。
html 复制代码
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>太极八卦图</title>
    <style>
      body {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ddd;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      .main {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .taijitu {
        position: relative;
        width: 200px;
        height: 200px;
        display: flex;
        background: linear-gradient(#000 50%, #fff 50%);
        border: 1px solid #000;
        border-radius: 50%;
        transform: rotate(90deg);
      }
      .taijitu::before,
      .taijitu::after {
        content: '';
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 35px solid transparent;
      }
      .taijitu::before {
        position: absolute;
        left: 0;
        top: 50px;
        background: #000;
        border-color: #fff;
      }
      .taijitu::after {
        position: absolute;
        right: 0;
        top: 50px;
        background: #fff;
        border-color: #000;
      }
      .main:hover {
        transform: rotate(666turn);
        transition-delay: 1s;
        transition-property: all;
        transition-duration: 59s;
        transition-timing-function: cubic-bezier(0.34, 0, 0.84, 1);
      }
      .baguaBox {
        position: absolute;
        width: 128%;
      }
      .baguaBox .item {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
      }
      .baguaBox > div:nth-child(2) {
        transform: rotate(-45deg);
      }
      .baguaBox > div:nth-child(3) {
        transform: rotate(-90deg);
      }
      .baguaBox > div:nth-child(4) {
        transform: rotate(-135deg);
      }

      .baguaBox > div:nth-child(1) div:first-child,
      .baguaBox > div:nth-child(2) div:first-child,
      .baguaBox > div:nth-child(3) div:first-child,
      .baguaBox > div:nth-child(4) div:first-child {
        transform: rotate(-90deg);
      }
      .baguaBox > div:nth-child(1) div:last-child,
      .baguaBox > div:nth-child(2) div:last-child,
      .baguaBox > div:nth-child(3) div:last-child,
      .baguaBox > div:nth-child(4) div:last-child {
        transform: rotate(90deg);
      }

      .item div {
        position: absolute;
      }
      .item div:first-child {
        left: 0;
      }
      .item div:last-child {
        right: 0;
      }
      .item div span {
        margin: auto;
        display: block;
        width: 30px;
        height: 1.5px;
        background: #000;
        margin-bottom: 5px;
      }
      .item div span:nth-child(2) {
        width: 20px;
      }
      .item div span:nth-child(3) {
        width: 10px;
      }
    </style>
  </head>
  <body>
    <div class="main">
      <!-- 太极图 -->
      <div class="taijitu"></div>
      <!-- 八卦 -->
      <div class="baguaBox">
        <div class="item">
          <div><span></span><span></span><span></span></div>
          <div><span></span><span></span><span></span></div>
        </div>
        <div class="item">
          <div><span></span><span></span><span></span></div>
          <div><span></span><span></span><span></span></div>
        </div>
        <div class="item">
          <div><span></span><span></span><span></span></div>
          <div><span></span><span></span><span></span></div>
        </div>
        <div class="item">
          <div><span></span><span></span><span></span></div>
          <div><span></span><span></span><span></span></div>
        </div>
      </div>
    </div>
  </body>
</html>
  • 观众老爷门记得点赞。
相关推荐
子兮曰4 天前
jev-ultrafast 深度解析:7 秒订机票的浏览器 Agent 是如何炼成的
前端·后端·agent
子兮曰4 天前
Jev 爆发一周:7 秒 Agent 背后的 System One 生态与三场争议
前端·后端·ai编程
前端小万4 天前
写公众号赚了 3000 块后,我做了一款叫 "一键成稿" 的软件
前端·微信小程序
爱勇宝4 天前
ZCode 开源 24 小时:一份没有历史的账本,回答不了"有没有偷代码"
前端·后端·chatglm (智谱)
三十而立洋4 天前
Cookie 详解:从产生到安全,一次讲透
前端·javascript
卡布鲁4 天前
把一个 Vite + Vue3 应用塞进 qiankun (React + Umi3) 主站:十个坑的复盘
前端·javascript·react.js
汉堡大王95274 天前
Jev:不是聊天机器人, 而是一个智能 if 语句
前端·人工智能·后端
梦想很大很大4 天前
从运行事实到回归证据:Workrun 的 Telemetry 与 Evaluation 实践
前端·人工智能·后端
计算机魔术师4 天前
Meta Muse agent 接入 Shopify 的 Shop Pay 实现代理式购物
前端
沙蒿同学4 天前
我用 Go 搭了一条 AI Agent 流水线:从 1 张商品图到一整套淘宝详情页
前端·javascript·后端