CSS 動態導航選單
本章節分享一段程式碼例項,它利用CSS3實現了動態導航選單效果。
最終生成了一個環形導航選單,更多導航選單效果可以參閱特效程式碼導航選單分類。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> * { margin: 0; padding: 0; } li, ul { list-style: none; } .fir_li { width: 80px; height: 40px; background: #000; color: #fff; margin: 5px; text-align: center; line-height: 40px; border-radius: 5px; position: absolute; left: 300px; top: 300px; } .sec_ul { width: auto; height: auto; } .sec_li { width: 80px; height: 40px; position: absolute; background: #000; color: #fff; text-align: center; line-height: 40px; border-radius: 5px; left: -1000px; top: -10000px; } .fir_li:hover .sec_ul > li:nth-child(1) { animation: secLi1 5s; animation-delay: 0.5s; animation-fill-mode: forwards; } .fir_li:hover .sec_ul > li:nth-child(2) { animation: secLi2 5s; animation-delay: 1s; animation-fill-mode: forwards; } .fir_li:hover .sec_ul > li:nth-child(3) { animation: secLi3 5s; animation-delay: 1.5s; animation-fill-mode: forwards; } .fir_li:hover .sec_ul > li:nth-child(4) { animation: secLi4 5s; animation-delay: 2s; animation-fill-mode: forwards; } .fir_li:hover .sec_ul > li:nth-child(5) { animation: secLi5 5s; animation-delay: 2.5s; animation-fill-mode: forwards; } @keyframes secLi1 { 0% { left: 0; top: 0; } 50% { left: 0px; top: 200px; transform: rotate(0deg); transform-origin: center -200px; } 90% { left: 0px; top: 200px; transform: rotate(-180deg); transform-origin: center -200px; } 100% { left: 0px; top: 200px; transform: rotate(0deg); } } @keyframes secLi2 { 0% { left: 0; top: 0; } 50% { left: 0px; top: 200px; transform: rotate(0deg); transform-origin: center -200px; } 90% { transform: rotate(-180deg); transform-origin: center -200px; } 100% { left: 140px; top: 140px; transform: rotate(0deg); } } @keyframes secLi3 { 0% { left: 0; top: 0; } 50% { left: 0px; top: 200px; transform: rotate(0deg); transform-origin: center -200px; } 90% { transform: rotate(-180deg); transform-origin: center -200px; } 100% { left: 200px; top: 0px; transform: rotate(0deg); } } @keyframes secLi4 { 0% { left: 0; top: 0; } 50% { left: 0px; top: 200px; transform: rotate(0deg); transform-origin: center -200px; } 90% { transform: rotate(-180deg); transform-origin: center -200px; } 100% { left: 140px; top: -140px; transform: rotate(0deg); } } @keyframes secLi5 { 0% { left: 0; top: 0; } 50% { left: 0px; top: 200px; transform: rotate(0deg); transform-origin: center -200px; } 90% { transform: rotate(-180deg); transform-origin: center -200px; } 100% { left: 0px; top: -200px; transform: rotate(0deg); } } </style> </head> <body> <ul id="fir_ul"> <li class="fir_li"> 選單 <ul class="sec_ul"> <li class="sec_li">螞蟻部落一</li> <li class="sec_li">螞蟻部落二</li> <li class="sec_li">螞蟻部落三</li> <li class="sec_li">螞蟻部落四</li> <li class="sec_li">螞蟻部落五</li> </ul> </li> </ul> </body> </html>
上述程式碼實現了比較好的動態導航效果,可以借鑑參考。
相關文章
- CSS垂直導航選單CSS
- CSS導航欄及下拉選單CSS
- CSS多級導航選單效果CSS
- CSS垂直三級導航選單CSS
- CSS3動畫效果下拉導航選單效果CSSS3動畫
- 純css製作導航下拉選單CSS
- 導航選單(動畫)--- jQuery動畫jQuery
- CSS三級下拉導航選單詳解CSS
- CSS3麵包屑導航選單CSSS3
- 純CSS打造淘寶導航選單欄CSS
- CSS3垂直摺疊導航選單CSSS3
- CSS水平導航選單製作詳解CSS
- CSS 水平導航選單製作詳解CSS
- CSS3橫向導航選單效果CSSS3
- CSS 可伸縮圓角導航選單CSS
- CSS學習案例(14):下拉導航選單CSS
- PbootCMS導航選單-導航選單的使用教程boot
- jq+css+html打造下拉導航選單例項CSSHTML單例
- vitepress動態導航Vite
- 透明層滑動跟隨導航選單
- CSS3立體導航選單程式碼例項CSSS3
- css3滑鼠懸浮展開收縮導航選單CSSS3
- JavaScript二級導航選單JavaScript
- JavaScript 三級導航選單JavaScript
- CSS導航條選單:帶小三角形CSS
- CSS jquery圓角帶陰影的導航選單程式碼分享CSSjQuery
- Element-ui之導航選單UI
- JavaScript slide下拉導航選單效果JavaScriptIDE
- jQuery和css3全屏彈出式導航選單特效外掛jQueryCSSS3特效
- jQuery三級導航選單詳解jQuery
- (四)選單導航及路由設定路由
- 固定在頂部的導航選單
- vue元件之路之menu導航選單Vue元件
- jQuery 動畫方式展開或者收縮垂直導航選單jQuery動畫
- jQuery 淡入淡出效果下拉導航選單jQuery
- JavaScript橫向二級導航選單效果JavaScript
- JavaScript可摺疊屬性導航選單JavaScript
- JavaScript下拉摺疊導航選單講解JavaScript