首页 > 其他 > 详细

太极图----伪类实现

时间:2017-01-24 16:07:46      阅读:277      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>太极</title>
<style>
*{
margin:0;
padding:0;
}
div, :before, :after {
box-sizing: border-box;
}
#taiji {
position: absolute;
top: 50%;
left: 50%;
width: 200px;
height: 200px;
margin: -100px 0 0 -100px;
background: linear-gradient(0deg, black 50%, white 50%);
border-radius: 50%;
border:1px black solid;
}
@keyframes taiji {
from{
transform: rotate(0deg) scale(1);
}
to{
transform: rotate(360deg) scale(2);
}
}
#taiji:hover {
animation: taiji 1s ease 0s infinite;
}
#taiji:before, #taiji:after {
content: "";
display: block;
position: absolute;
width: 50%;
height: 50%;
top: 25%;
border-radius: 50%;
border: 35px solid transparent;
}
#taiji:before {
left: 0;
border-color: black;
background-color: white;
}
#taiji:after {
right: 0;
border-color: white;
background-color: black;
}
</style>
</head>
<body>
<div id="taiji"></div>
</body>
</html>

太极图----伪类实现

原文:http://www.cnblogs.com/qiancheng123/p/6347150.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!