css3實現動態導航選單
本章節分享一段程式碼例項,它利用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
- CSS3動畫效果下拉導航選單效果CSSS3動畫
- CSS3麵包屑導航選單CSSS3
- CSS3垂直摺疊導航選單CSSS3
- CSS3橫向導航選單效果CSSS3
- 導航選單(動畫)--- jQuery動畫jQuery
- PbootCMS導航選單-導航選單的使用教程boot
- 垂直摺疊導航選單實現詳解
- CSS3立體導航選單程式碼例項CSSS3
- css3實現側邊滑動選單CSSS3
- css3滑鼠懸浮展開收縮導航選單CSSS3
- 中英文切換導航選單實現詳解
- vitepress動態導航Vite
- 透明層滑動跟隨導航選單
- .Net Core Razor動態選單實現
- CSS垂直導航選單CSS
- JavaScript實現HTML導航欄下拉選單[懸浮顯示]JavaScriptHTML
- jQuery和css3全屏彈出式導航選單特效外掛jQueryCSSS3特效
- BootstrapBlazor實戰 Menu 導航選單使用(2)bootBlazor
- BootstrapBlazor實戰 Menu 導航選單使用(1)bootBlazor
- JavaScript二級導航選單JavaScript
- JavaScript 三級導航選單JavaScript
- js和CSS3媒體查詢製作簡單的響應式導航選單JSCSSS3
- CSS導航欄及下拉選單CSS
- CSS多級導航選單效果CSS
- CSS垂直三級導航選單CSS
- Element-ui之導航選單UI
- JavaScript slide下拉導航選單效果JavaScriptIDE
- css3動畫實現數字動態增加CSSS3動畫
- 基於jquery-treeview的動態選單實現jQueryView
- jQuery實現吸頂動畫導航欄jQuery動畫
- jQuery三級導航選單詳解jQuery
- 純css製作導航下拉選單CSS
- (四)選單導航及路由設定路由
- 固定在頂部的導航選單
- vue元件之路之menu導航選單Vue元件
- jQuery 動畫方式展開或者收縮垂直導航選單jQuery動畫
- 頭部導航欄也是動態的,板塊裡面的內容根據頭部導航欄動態展現資料
- jQuery 淡入淡出效果下拉導航選單jQuery