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

八卦旋转

时间:2017-06-28 23:16:47      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:style   width   div   anim   transform   idt   class   body   bottom   

<!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>
<script>
</script>
</body>
</html>

八卦旋转

标签:style   width   div   anim   transform   idt   class   body   bottom   

原文地址:http://www.cnblogs.com/gg123/p/7091809.html

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