太極

<!DOCTYPE html>
<html>
<head>
    <style>
    .shap{
        
    top:230px;
        animation: shap 10s infinite ease;
width:100px;
height:200px;
background-color:white;
border-right:100px solid #000;
margin:30px auto;
position:relative;
border-radius:50%;
    }
 .shap:before{
     content: "";
     width:20px;
     height:20px;
     border:40px solid white;
     background-color: #000;
     position:absolute;
     left:50%;
     border-radius:50%;
 }
 
 .shap:after{
     content: "";
     width:20px;
     height:20px;
     border:40px solid #000;
     background-color: white;
     position:absolute;
 left:50%;
 top:50%;
 border-radius:50%;
 }
 @keyframes shap{
     0%{transform:rotate(0deg)}
     100%{transform:rotate(360deg)}
 }
 
 
    </style>
</head>
<body style="background-color: pink;">
    <div class="shap"></div>
</body>
</html>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章