CSS導航欄是網站設計中的一種重要元素,能夠為用戶提供方便的頁面訪問路徑和良好的交互體驗。本文將介紹一些常見的CSS導航欄特效圖,并提供相應的代碼示例。
1. 漸變背景導航欄
.nav { background: linear-gradient(#4c4c4c, #333333); display: flex; justify-content: space-around; align-items: center; height: 60px; font-size: 18px; color: #fff; } .nav a { text-decoration: none; color: #fff; }
2. 手風琴效果導航欄
.nav { display: flex; justify-content: space-around; align-items: center; height: 60px; font-size: 18px; color: #333; } .nav a { text-decoration: none; color: #333; flex: 1; text-align: center; } .nav a:hover { background: #f2f2f2; } .nav a.active { background: #ccc; }
3. 側邊欄導航欄
.nav { position: fixed; top: 0; left: 0; width: 200px; height: 100%; background: #eee; padding: 20px; } .nav ul { list-style: none; padding: 0; margin: 0; } .nav li { margin-bottom: 10px; } .nav a { text-decoration: none; color: #333; font-size: 16px; display: block; } .nav a:hover { background: #ccc; }
以上是一些常見的CSS導航欄特效圖和對應的代碼示例,可以根據自己的需要進行調整和修改,實現更好的網站設計效果,提升用戶體驗。
上一篇mysql數據庫分數
下一篇css導航欄立體效果