daowuya 发表于 2019-5-6 16:46

纯HTML5+CSS3绘制旋转的太极图效果

本帖最后由 daowuya 于 2019-5-6 16:53 编辑

之前刚学html的时候练习的一个小demo。利用css3的animation属性加上伪类实现了这个效果


<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>CSS3旋转的太极</title>
<style>
.taiji {
      margin:50px auto 0;
      height:200px;
      width:200px;
      animation:run-inner 2s infinite linear;
}
@keyframes run-inner {
      0% {
      transform:rotate(0deg)
}
25% {
      transform:rotate(-90deg)
}
50% {
      transform:rotate(-180deg)
}
75% {
      transform:rotate(-270deg)
}
100% {
      transform:rotate(-360deg)
}
}.a {
      width:200px;
      height:100px;
      border:1px solid #D3D3D3;
      border-bottom:0px;
      border-radius:100px 100px 0 0;
      background:#fff;
      position:relative;
}
.a:after {
      content:"";
      background:#fff;
      width:15px;
      height:15px;
      border-radius:50%;
      position:absolute;
      top:72px;
      left:147px;
}
.a .inner {
      width:100px;
      height:50px;
      position:absolute;
      bottom:0;
      right:0;
      background:#000;
      border-radius:50px 50px 0 0;
}
.b {
      width:201px;
      height:101px;
      border:1px solid #D3D3D3;
      border-top:0px;
      border-radius:0 0 100px 100px;
      background:#000;
      position:relative;
}
.b:after {
      content:"";
      background:#000;
      width:15px;
      height:15px;
      border-radius:50%;
      position:absolute;
      bottom:72px;
      right:147px;
}
.b .inner {
      width:100px;
      height:50px;
      position:absolute;
      top:0;
      left:0;
      background:#fff;
      border-radius:0 0 50px 50px;
}
</style>
</head>
<body>
    <div class="taiji">
      <div class="a">
            <div class="inner">
            </div>
      </div>
      <div class="b">
            <div class="inner">
            </div>
      </div>
    </div>
</body>
</html>

torboxin 发表于 2019-5-6 17:03

为什么不带效果图?还得让我来补

imcuer 发表于 2019-5-6 16:52

太极图效果 {:1_921:}

xuegaoxiansen 发表于 2019-5-6 17:28

简直不要太赞,弄个太极搞

teondy 发表于 2019-5-6 17:49

厉害了 效果很赞

daowuya 发表于 2019-5-6 17:51

torboxin 发表于 2019-5-6 17:03
为什么不带效果图?还得让我来补

你是用GIF录制的吗?

97hpa 发表于 2019-5-6 20:29

效果还是不错的,适合网页头部或底部,B格很高哦

torboxin 发表于 2019-5-7 16:58

daowuya 发表于 2019-5-6 17:51
你是用GIF录制的吗?

是的哦,

opai 发表于 2019-11-13 20:47

厉害了我的哥
页: [1]
查看完整版本: 纯HTML5+CSS3绘制旋转的太极图效果