css3迴圈漸隱漸現效果程式碼例項
本章節分享一段程式碼例項,它利用css3實現了迴圈漸隱漸現效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> body { background-color: #efefef; } .main { width: 300px; height: 300px; border-radius: 10px; overflow: hidden; } .child { width: 100px; height: 100px; float: left; background-color: rgba(255,0,0,0.5); text-align: center; opacity: 0; line-height: 100px; animation-name: flash; animation-duration: 9s; animation-iteration-count: infinite; } .child:nth-child(1) { animation-delay: 0s; } .child:nth-child(2) { animation-delay: 0.5s; } .child:nth-child(3) { animation-delay: 1s; } .child:nth-child(4) { animation-delay: 3.5s; } .child:nth-child(5) { animation: none; background-color: #fff; opacity: 1; } .child:nth-child(6) { animation-delay: 1.5s; } .child:nth-child(7) { animation-delay: 3s; } .child:nth-child(8) { animation-delay: 2.5s; } .child:nth-child(9) { animation-delay: 2s; } @keyframes flash { 0% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } </style> </head> <body> <div class="main"> <div class="child child1"> 1 </div> <div class="child child2"> 2 </div> <div class="child child3"> 3 </div> <div class="child child4"> 4 </div> <div class="child child5"> 5 </div> <div class="child child6"> 6 </div> <div class="child child7"> 7 </div> <div class="child child8"> 8 </div> <div class="child child9"> 9 </div> </div> </body> </html>
相關文章
- CSS3圓形漸隱漸現迴圈出現CSSS3
- CSS3背景漸變效果程式碼例項CSSS3
- Dreamweaver網頁元素怎麼製作漸隱漸現效果教程網頁
- css3水滴效果程式碼例項CSSS3
- canvas繪製小球漸隱漸現Canvas
- 短視訊直播原始碼,實現頂部導航欄背景圖片漸隱漸現效果原始碼
- css3晃動效果程式碼例項CSSS3
- CSS3心形效果程式碼例項CSSS3
- CSS3旋轉效果程式碼例項CSSS3
- CSS3滑過光束效果程式碼例項CSSS3
- CSS3小黃人效果程式碼例項CSSS3
- css3折角效果程式碼例項CSSS3
- CSS3梯形效果程式碼例項CSSS3
- CSS3星系運動效果程式碼例項CSSS3
- css3實現文字線性漸變,css3實現背景漸變CSSS3
- CSS3文字凹凸效果程式碼例項CSSS3
- Qt實現控制元件的漸隱漸現動效QT控制元件
- CSS3文字顏色漸變效果CSSS3
- 關於CSS中@support實現漸進式網頁設計例項程式碼CSS網頁
- 教你怎麼使用css3給圖片新增漸變效果(程式碼詳解)CSSS3
- CSS3文字陰影效果程式碼例項CSSS3
- css3 漸變CSSS3
- css3漸變CSSS3
- 使用 CSS 實現漸變效果CSS
- CSS3 背景漸變CSSS3
- for迴圈的例項分析
- CSS3卡通形象程式碼例項CSSS3
- CSS3現菱形效果程式碼CSSS3
- SVG 漸變動畫效果SVG動畫
- jQuery tab選項卡效果程式碼例項jQuery
- canvas載入效果程式碼例項Canvas
- CSS橢圓效果程式碼例項CSS
- html實現簡單ListViews效果的例項程式碼HTMLView
- css3背景顏色漸變CSSS3
- CSS3發光背景程式碼例項CSSS3
- CSS3紙飛機程式碼例項CSSS3
- SVG線性漸變程式碼SVG
- border-image實現與圓角漸變邊框例項頁面
- Dreamweaver製作滑鼠經過圖片漸漸變暗效果教程