写一份qq的横向导航栏
时间: 2024-12-11 16:30:15 浏览: 21
创建一个QQ风格的横向导航栏,通常包含常用的功能入口,可以按照以下步骤进行设计:
1. **HTML结构**:
```html
<div class="nav-container">
<div class="nav-bar horizontal-navigation">
<a href="#" class="nav-item active">首页</a>
<a href="#" class="nav-item">消息</a>
<a href="#" class="nav-item">联系人</a>
<a href="#" class="nav-item">发现</a>
<a href="#" class="nav-item">我的</a>
</div>
</div>
```
2. **CSS样式**:
```css
.nav-container {
width: 100%;
background-color: #f5f5f5;
}
.horizontal-navigation {
display: flex;
justify-content: space-between;
align-items: center;
height: 60px;
padding: 0 20px;
background-color: #fff;
border-bottom: 1px solid #e5e5e5;
}
.nav-item {
display: inline-block;
text-align: center;
padding: 0 30px;
font-size: 18px;
color: #333;
transition: all 0.3s ease;
}
.nav-item.active {
color: #0099cc;
cursor: pointer;
}
```
这个例子中,每个`<a>`标签代表一个导航项,`.active`类用于标记当前选中的页面。
阅读全文