太极图
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>八卦图</title>
<style>
*{margin: 0;padding: 0;}
body{background: blue;}
.Gossip{
width:192px;
height:96px;
background: #fff;
border-style: solid;
border-width: 0px 0px 100px 0px;
position: relative;
border-radius:50%;
margin: 100px auto;
-webkit-animation:move 2s linear infinite;
}
.Gossip:before,
.Gossip:after{
content: "";
position: absolute;
}
.Gossip:before{
width: 24px;
height: 24px;
top:50%;
left:0px;
background: #fff;
border: 36px solid #000;
border-radius:50%;
}
.Gossip:after{
width: 24px;
height: 24px;
top:50%;
left:50%;
background:#000;
border: 36px solid #fff;
border-radius:50%;
}
@keyframes move{
0%{
-webkit-transform:rotate(0deg);
}
100%{
-webkit-transform:rotate(360deg);
}
}
</style>
</head>
<body>
<div class="Gossip"></div>
</body>
</html>
