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>
相關文章
- 滑鼠懸浮div實現旋轉效果
- 滑鼠懸浮實現環形旋轉效果
- 卡片旋轉動畫效果動畫
- 頁面旋轉動畫效果動畫
- php實現圖片旋轉PHP
- CSS3多面體旋轉效果CSSS3
- 滑鼠懸浮圖片旋轉效果
- CSS3星系旋轉效果代CSSS3
- CSS3圖片旋轉效果CSSS3
- 影像旋轉的FPGA實現(一)FPGA
- css地球月亮太陽環繞旋轉CSS
- CSS3旋轉載入等待效果CSSS3
- CSS3地月星系旋轉效果CSSS3
- 滑鼠懸浮電風扇旋轉效果
- 圓角頭像加360旋轉效果
- js控制專輯圖片旋轉效果JS
- 簡單的css3頭像旋轉與3D旋轉效果CSSS33D
- CSS3旋轉風車效果程式碼CSSS3
- CSS3滑鼠懸浮div旋轉效果CSSS3
- CSS3旋轉效果程式碼例項CSSS3
- 不適用imrotate 的影像旋轉實現
- ARFoundation - 實現物體旋轉, 平移,縮放
- jQuery環形旋轉載入進度條效果jQuery
- CSS3旋轉大風車效果詳解CSSS3
- Android SeekBar 自定義thumb,thumb旋轉動畫效果Android動畫
- css3實現橢圓軌跡旋轉CSSS3
- [轉]旋轉矩陣:點旋轉和座標系旋轉矩陣
- HTML+CSS實現選單的3D翻轉特效HTMLCSS3D特效
- HTML+CSS完成聚光燈效果HTMLCSS
- CSS3立方體3D旋轉效果CSSS33D
- 使用css3做一個魔方旋轉的效果CSSS3
- 想做一些小效果,影片怎麼旋轉90度?
- Flutter2.0 繪製旋轉太空人+蛛網效果Flutter
- html+css 簡易摩天輪效果HTMLCSS
- 用html5實現圖片的旋轉--照片牆HTML
- 使用RxJava實現ImageView的拖動、旋轉和縮放RxJavaView
- HTML+CSS實現下拉選單HTMLCSS
- HTML+CSS實現動態相簿HTMLCSS