码迷,mamicode.com
首页 > 其他好文 > 详细

旋转的太极

时间:2016-08-14 16:06:03      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

  <!DOCTYPE html>
  <html>
  <head lang="en">
  <meta charset="UTF-8">
  <title>css3八卦</title>
  <style>
  body{background-color: lightgray;}
  @-webkit-keyframes yidong{
  100%{transform: translate(200px) rotate(720deg)}
  }
  #bagua{
  width: 200px;
  height: 100px;
  background-color: #fff;
  border-bottom: 100px solid #000;
  border-radius: 50%;
  position: relative;
   
  -webkit-animation: yidong 10s ease 0.1s forwards;
  }
  #bagua:before{
  content: "";
  width: 36px;
  height: 36px;
  border: 32px solid #000;
  background-color: #fff;
  position: absolute;
  top: 50px;
  border-radius: 50%;
  }
  #bagua:after{
  content: "";
  width: 36px;
  height: 36px;
  border: 32px solid #fff;
  background-color: #000;
  position: absolute;
  top: 50px;
  left: 100px;
  border-radius: 50%;
  }
   
   
   
  </style>
  </head>
  <body>
  <div id="bagua"></div>
  </body>
  </html>

旋转的太极

标签:

原文地址:http://www.cnblogs.com/135wxp/p/5770189.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!