CSS3 loadding載入效果
分享一段程式碼例項,它實現了四小球loadding載入效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> .container{ width: 300px; height: 300px; position: relative; margin:50px auto; } .circle{ width: 100px; height: 100px; position: absolute; border-radius: 50%; } #one{ left: 0; top: 0; background:#f00; animation: move1 2s ease-in-out infinite; } #two{ right: 0; top: 0; background:#000; animation: move2 2s ease-in-out infinite; } #three{ left: 0; bottom: 0; background:blue; animation: move3 2s ease-in-out infinite; } #four{ right: 0; bottom: 0; background:yellow; animation: move4 2s ease-in-out infinite; } /*動畫*/ @keyframes move1{ 0%{transform: translate(0,0)} 50%{transform: translate(200px,200px)} 100%{transform: translate(0,0)} } @keyframes move2{ 0%{transform: translate(0,0)} 50%{transform: translate(-200px,200px)} 100%{transform: translate(0,0)} } @keyframes move3{ 0%{transform: translate(0,0)} 50%{transform: translate(200px,-200px)} 100%{transform: translate(0,0)} } @keyframes move4{ 0%{transform: translate(0,0)} 50%{transform: translate(-200px,-200px)} 100%{transform: translate(0,0)} } </style> </head> <body> <div class="container"> <div class="circle" id="one"></div> <div class="circle" id="two"></div> <div class="circle" id="three"></div> <div class="circle" id="four"></div> </div> </body> </html>
相關文章
- CSS3 loadding載入動畫效果CSSS3動畫
- CSS3 loadding載入程式碼CSSS3
- CSS3 loadding效果程式碼CSSS3
- CSS3漂亮的loadding載入動畫CSSS3動畫
- CSS3旋轉載入等待效果CSSS3
- CSS3載入等待動畫效果CSSS3動畫
- CSS3五連珠載入等待效果CSSS3
- CSS3 loadding旋轉等待動畫CSSS3動畫
- CSS3象棋效果CSSS3
- CSS3 矩形切角效果CSSS3
- CSS3翻轉效果CSSS3
- CSS3呼吸燈效果CSSS3
- CSS3空心圓效果CSSS3
- CSS3 checkbox美化效果CSSS3
- CSS3哭臉效果CSSS3
- CSS3 文字效果CSSS3
- css正在載入中的效果CSS
- CSS3箭靶效果程式碼CSSS3
- CSS3花屏文字效果CSSS3
- CSS3白鶴展翅效果CSSS3
- 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 div水平運動效果CSSS3
- css3過渡效果詳解CSSS3
- css3小球上下移動效果CSSS3