CSS3實現的小球旋轉載入等待效果
本章節分享一段程式碼例項,它實現了小球旋轉載入等待效果。這種效果在實際應用中非常常見。
程式碼如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> .spinner{ margin:100px auto; width:90px; height:90px; position:relative; text-align:center; -webkit-animation:rotate 2.0s infinite linear; animation:rotate 2.0s infinite linear; } .dot1, .dot2{ width:60%; height:60%; display:inline-block; position:absolute; top:0; background-color:#67CF22; border-radius:100%; -webkit-animation:bounce 2.0s infinite ease-in-out; animation:bounce 2.0s infinite ease-in-out; } .dot2 { top: auto; bottom: 0px; -webkit-animation-delay: -1.0s; animation-delay: -1.0s; } @-webkit-keyframes rotate { 100% { -webkit-transform: rotate(360deg) } } @keyframes rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) } } @-webkit-keyframes bounce { 0%, 100% { -webkit-transform: scale(0.0) } 50% { -webkit-transform: scale(1.0) } } @keyframes bounce { 0%, 100% { transform: scale(0.0); -webkit-transform: scale(0.0); } 50% { transform: scale(1.0); -webkit-transform: scale(1.0); } } </style> </head> <body> <div class="spinner"> <div class="dot1"></div> <div class="dot2"></div> </div> </body> </html>
相關文章
- css3實現的旋轉載入等待效果CSSS3
- CSS3旋轉載入等待效果CSSS3
- css3點狀旋轉載入等待效果CSSS3
- canvas小球旋轉loadding載入效果Canvas
- css3實現的loadding旋轉載入效果CSSS3
- css3實現旋轉loadding載入效果CSSS3
- CSS3實現的頁面載入等待效果CSSS3
- CSS3實現的loadding載入等待效果CSSS3
- css3實現的旋轉的陀螺效果CSSS3
- css3實現的立方體旋轉效果CSSS3
- css3實現環狀旋轉效果CSSS3
- CSS3實現的環形旋轉載入補全效果程式碼例項CSSS3
- CSS3載入等待動畫效果CSSS3動畫
- CSS3實現的3D旋轉效果CSSS33D
- CSS3邊框旋轉動畫實現效果CSSS3動畫
- jQuery和css3實現的摩天輪旋轉效果jQueryCSSS3
- CSS3 實現兩端擺動的小球效果CSSS3
- | / - 的旋轉效果實現(轉)
- CSS3五連珠載入等待效果CSSS3
- 旋轉等待內容載入完畢實現程式碼例項
- css3實現的3D立體旋轉效果CSSS33D
- css3實現的旋轉魔方效果程式碼例項CSSS3
- css3實現的立方體3D旋轉效果CSSS33D
- js和css3實現的載入等待特效JSCSSS3特效
- js和css3實現360旋轉滾動效果JSCSSS3
- CSS3實現的div元素旋轉一定角度效果CSSS3
- CSS3 旋轉魔方效果CSSS3
- SVG實現的圓環旋轉效果SVG
- css3實現旋轉的太極圖效果程式碼例項CSSS3
- CSS3圖片旋轉效果CSSS3
- CSS3多面體旋轉效果CSSS3
- CSS3星系旋轉效果代CSSS3
- CSS3 loadding旋轉等待動畫CSSS3動畫
- css3實現的loadding載入動畫效果CSSS3動畫
- css3實現動態摺疊生成立方體旋轉效果CSSS3
- CSS3 圓環內部旋轉效果CSSS3
- CSS3地月星系旋轉效果CSSS3
- css3小球上下移動效果CSSS3