HTML+CSS實現太極旋轉效果
實現太極程式碼
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 400px;
height: 400px;
border: 2px solid black;
border-radius: 50%;
margin: auto;
position: relative;
/*呼叫動畫軌跡*/
/* animation: name duration timing-function delay iteration-count direction fill-mode;
animation : 動畫名稱 動畫所需的時間 動畫的運動方式(linear:勻速) 動畫的延遲時間 動畫的運動次數(number|infinite:無限次) */
animation: taijimove 4s linear infinite;
}
.left_semicircle {
width: 200px;
height: 400px;
background-color: black;
border-radius: 400px 0px 0px 400px;
position: absolute;
left: 0px;
top: 0px;
}
.right_semicircle {
width: 200px;
height: 400px;
background-color: white;
border-radius: 0px 400px 400px 0px;
position: absolute;
left: 200px;
top: 0px;
}
.left_middle_circle {
width: 200px;
height: 200px;
background-color: white;
border-radius: 50%;
position: absolute;
left: 100px;
bottom: 0px;
z-index: 1;
}
.right_middle_circle {
width: 200px;
height: 200px;
background-color: black;
border-radius: 50%;
position: absolute;
left: -100px;
top: 0px;
z-index: 1;
}
.left_small_circle {
width: 40px;
height: 40px;
background-color: black;
border-radius: 50%;
position: absolute;
left: 80px;
bottom: 80px;
}
.right_small_circle {
width: 40px;
height: 40px;
background-color: white;
border-radius: 50%;
position: absolute;
left: 80px;
top: 80px;
}
/* 制動動畫軌跡 */
@keyframes taijimove {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="box">
<div class="left_semicircle">
<div class="left_middle_circle">
<div class="left_small_circle"></div>
</div>
</div>
<div class="right_semicircle">
<div class="right_middle_circle">
<div class="right_small_circle"></div>
</div>
</div>
</div>
</body>
</html>
相關文章
- canvas實現的旋轉太極圖效果Canvas
- canvas旋轉太極圖效果Canvas
- canvas實現的旋轉的太極圖效果程式碼例項Canvas
- css3實現旋轉的太極圖效果程式碼例項CSSS3
- canvas實現太陽、地球和月亮旋轉效果Canvas
- | / - 的旋轉效果實現(轉)
- SVG實現的圓環旋轉效果SVG
- CSS3 太陽系星球旋轉效果CSSS3
- 滑鼠懸浮div實現旋轉效果
- 滑鼠懸浮實現環形旋轉效果
- css3實現環狀旋轉效果CSSS3
- css3實現的旋轉的陀螺效果CSSS3
- CSS3邊框旋轉動畫實現效果CSSS3動畫
- css3實現的立方體旋轉效果CSSS3
- CSS3實現的3D旋轉效果CSSS33D
- css3實現的旋轉載入等待效果CSSS3
- CSS3 旋轉太極八卦圖程式碼例項CSSS3
- css3實現旋轉loadding載入效果CSSS3
- three.js實現的地球3D旋轉效果JS3D
- jQuery和css3實現的摩天輪旋轉效果jQueryCSSS3
- js和css3實現360旋轉滾動效果JSCSSS3
- CSS3實現的小球旋轉載入等待效果CSSS3
- 卡片旋轉動畫效果動畫
- css3實現的3D立體旋轉效果CSSS33D
- css3實現的旋轉魔方效果程式碼例項CSSS3
- css3實現的loadding旋轉載入效果CSSS3
- css3實現的立方體3D旋轉效果CSSS33D
- 滑鼠懸浮div實現旋轉縮放效果程式碼例項
- CSS3實現的div元素旋轉一定角度效果CSSS3
- php實現圖片旋轉PHP
- css地球月亮太陽環繞旋轉CSS
- css3實現動態摺疊生成立方體旋轉效果CSSS3
- three.js實現的3D球狀拖動旋轉效果JS3D
- CSS 3D旋轉效果CSS3D
- CSS3 旋轉魔方效果CSSS3
- Flash遮罩做地球旋轉效果遮罩
- 純CSS實現撲克牌效果,太牛了吧CSS
- 影像旋轉的FPGA實現(一)FPGA