CSS3旋轉效果程式碼例項
分享一段簡單的程式碼例項,它實現了簡單的旋轉效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> body { background-color: #000; } td { width: 10px; height: 10px; border-radius: 10px; background-color: #ff0000; position: fixed; left: 50%; top: 50%; } @keyframes td { 0% { background-color: #ff0000; } 20% { background-color: #ff5809; } 40% { background-color: #ffff33; } 60% { background-color: #33ff3e; } 80% { background-color: #33f0ff; } 90% { background-color: #3e1cff; } 100% { background-color: #ff33ff; } } td { animation: td 10s ease-in-out 1s infinite alternate; } .q1 { width: 70px; height: 70px; border-radius: 70px; border: 4px solid #ff5809; margin: -34px -34px; border-bottom-color: transparent; border-top-color: transparent; } .q2 { width: 90px; height: 90px; border-radius: 90px; border: 4px solid #ffff33; margin: -88px -44px; border-bottom-color: transparent; border-top-color: transparent; } .q3 { width: 110px; height: 110px; border-radius: 110px; border: 4px solid #33ff3e; margin: -108px -54px; border-bottom-color: transparent; border-top-color: transparent; } .q4 { width: 130px; height: 130px; border-radius: 130px; border: 4px solid #33f0ff; margin: -128px -64px; border-bottom-color: transparent; border-top-color: transparent; } .q5 { width: 150px; height: 150px; border-radius: 150px; border: 4px solid #3e1cff; margin: -148px -74px; border-bottom-color: transparent; border-top-color: transparent; } .q6 { width: 170px; height: 170px; border-radius: 170px; border: 4px solid #ff33ff; margin: -168px -84px; border-bottom-color: transparent; border-top-color: transparent; } @keyframes q1 { 0% { transform: rotate(0deg); } 20% { transform: rotate(1340deg); } 40% { transform: rotate(1400deg); } 60% { transform: rotate(1460deg); } 80% { transform: rotate(1520deg); } 100% { transform: rotate(2300deg); } } td .q1 { animation: q1 16s ease-in-out 0.1s infinite alternate; } @keyframes q2 { 0% { transform: rotate(0deg); } 20% { transform: rotate(1300deg); } 40% { transform: rotate(1360deg); } 60% { transform: rotate(1420deg); } 80% { transform: rotate(1480deg); } 100% { transform: rotate(2340deg); } } td .q2 { animation: q2 16s ease-in-out 0.1s infinite alternate; } @keyframes q3 { 0% { transform: rotate(0deg); } 20% { transform: rotate(1200deg); } 40% { transform: rotate(1260deg); } 60% { transform: rotate(1320deg); } 80% { transform: rotate(1380deg); } 100% { transform: rotate(2400deg); } } td .q3 { animation: q3 16s ease-in-out 0.1s infinite alternate; } @keyframes q4 { 0% { transform: rotate(0deg); } 20% { transform: rotate(1020deg); } 40% { transform: rotate(1380deg); } 60% { transform: rotate(1340deg); } 80% { transform: rotate(1200deg); } 100% { transform: rotate(2460deg); } } td .q4 { animation: q4 16s ease-in-out 0.1s infinite alternate; } @keyframes q5 { 0% { transform: rotate(0deg); } 20% { transform: rotate(920deg); } 40% { transform: rotate(1380deg); } 60% { transform: rotate(1340deg); } 80% { transform: rotate(1100deg); } 100% { transform: rotate(2540deg); } } td .q5 { animation: q5 16s ease-in-out 0.1s infinite alternate; } @keyframes q6 { 0% { transform: rotate(0deg); } 20% { transform: rotate(860deg); } 40% { transform: rotate(1320deg); } 60% { transform: rotate(1380deg); } 80% { transform: rotate(1040deg); } 100% { transform: rotate(2580deg); } } td .q6 { animation: q6 16s ease-in-out 0.1s infinite alternate; } </style> </head> <body> <table> <tr> <td> <div class="q1"></div> <div class="q2"></div> <div class="q3"></div> <div class="q4"></div> <div class="q5"></div> <div class="q6"></div> </td> </tr> </table> </body> </html>
相關文章
- css3實現的旋轉魔方效果程式碼例項CSSS3
- css3實現旋轉的太極圖效果程式碼例項CSSS3
- 3D旋轉效果程式碼例項3D
- css3實現滑鼠懸浮圖示旋轉高亮效果程式碼例項CSSS3
- javascript元素3D旋轉效果程式碼例項JavaScript3D
- CSS3實現的環形旋轉載入補全效果程式碼例項CSSS3
- CSS3旋轉風車效果程式碼CSSS3
- css3星空效果程式碼例項CSSS3
- css3水滴效果程式碼例項CSSS3
- CSS3 名片效果程式碼例項CSSS3
- CSS3 旋轉太極八卦圖程式碼例項CSSS3
- CSS3實現的3D旋轉程式碼例項CSSS33D
- CSS3小黃人效果程式碼例項CSSS3
- css3晃動效果程式碼例項CSSS3
- CSS3心形效果程式碼例項CSSS3
- CSS3彈球效果程式碼例項CSSS3
- 滑鼠懸浮div實現旋轉縮放效果程式碼例項
- canvas實現的旋轉的太極圖效果程式碼例項Canvas
- CSS3滑過光束效果程式碼例項CSSS3
- css3繪製月牙效果程式碼例項CSSS3
- css3折角效果程式碼例項CSSS3
- CSS3梯形效果程式碼例項CSSS3
- CSS3背景漸變效果程式碼例項CSSS3
- css3立方體效果程式碼例項CSSS3
- css3優惠券效果程式碼例項CSSS3
- CSS3星系運動效果程式碼例項CSSS3
- css3漂浮氣球效果程式碼例項CSSS3
- css3 車輪轉動的自行車效果程式碼例項CSSS3
- CSS3文字凹凸效果程式碼例項CSSS3
- css3實現的折角效果程式碼例項CSSS3
- css3大象行走效果程式碼例項CSSS3
- CSS3 旋轉魔方效果CSSS3
- CSS3文字陰影效果程式碼例項CSSS3
- CSS3 div從左側滑入效果程式碼例項CSSS3
- css3文字鏤空效果程式碼例項CSSS3
- css3實現的打折卡效果程式碼例項CSSS3
- CSS3 實現的鐘表效果程式碼例項CSSS3
- css3實現的毛玻璃效果程式碼例項CSSS3