不用JS只用CSS制作的网页下拉菜单

一片金黄的阳光,照着苍绿的崖壁,崖壁上长着漂亮的小花,像蝴蝶一样动人。走入自然,踏青游玩,在大自然中尽情放松,享受清新空气。
以下是代码实例:

html代码:
复制代码
代码如下:

<div id="nav">
<ul>
<li class="menu2" onMouseOver="this.className='menu1'" onMouseOut="this.className='menu2'">Home Page
<div class="list">
<a rel="nofollow noopener noreferrer" href="https://www.haodaima.com/"></a>

<a rel="nofollow noopener noreferrer" href="#">我的首页</a>

<a rel="nofollow noopener noreferrer" href="#">我的日志</a>

<a rel="nofollow noopener noreferrer" href="#">我的日志</a>

<a rel="nofollow noopener noreferrer" href="#">我的相册</a>

<a rel="nofollow noopener noreferrer" href="#">我的收藏</a>

</div>
</li>
<li class="menu2" onMouseOver="this.className='menu1'" onMouseOut="this.className='menu2'">Connection
<div class="list">
<a rel="nofollow noopener noreferrer" href="https://www.haodaima.com/"></a>

<a rel="nofollow noopener noreferrer" href="#">我的首页</a>

<a rel="nofollow noopener noreferrer" href="#">我的日志</a>

<a rel="nofollow noopener noreferrer" href="#">我的相册</a>

<a rel="nofollow noopener noreferrer" href="#">我的收藏</a>

</div>
</li>
<li class="menu2" onMouseOver="this.className='menu1'" onMouseOut="this.className='menu2'">My Files
<div class="list">
<a rel="nofollow noopener noreferrer" href="https://www.haodaima.com/"></a>

<a rel="nofollow noopener noreferrer" href="#">我的相册</a>

<a rel="nofollow noopener noreferrer" href="#">我的收藏</a>

</div>
</li>
<li class="menu2" onMouseOver="this.className='menu1'" onMouseOut="this.className='menu2'">Management
<div class="list">
<a rel="nofollow noopener noreferrer" href="https://www.haodaima.com/"></a>

<a rel="nofollow noopener noreferrer" href="#">我的首页</a>

<a rel="nofollow noopener noreferrer" href="#">我的日志</a>

<a rel="nofollow noopener noreferrer" href="#">我的相册</a>

<a rel="nofollow noopener noreferrer" href="#">我的收藏</a>

<a rel="nofollow noopener noreferrer" href="#">我的日志</a>

<a rel="nofollow noopener noreferrer" href="#">我的相册</a>

<a rel="nofollow noopener noreferrer" href="#">我的收藏</a>

</div>
</li>
</ul>
</div>

下面是css代码:
复制代码
代码如下:

body{
background-color:white;
font-size:12px;
font-family:Arial, Helvetica, sans-serif;
margin:0px;
padding:0px;
color:white;
}
ul,li{
margin:0px;
padding:0px;
}
li{
display:inline;
list-style:none;
list-style-position:outside;
text-align:center;
font-weight:bold;
float:left;
}
a:link{
color:#336601;
text-decoration:none;
float:left;
width:100px;
padding:3px 5px 0px 5px;
}
a:visited{
color:#336601;
text-decoration:none;
float:left;
padding:3px 5px 0px 5px;
width:100px;
}
a:hover{
color:white;
float:left;
padding:3px 3px 0px 20px;
width:88px;
text-decoration:none;
background-color:#539D26;
}
a:active{
color:white;
float:left;
padding:3px 3px 0px 20px;
width:88px;
text-decoration:none;
background-color:#BD06B4;
}
#nav{
width:600px;
height:30px;
border-bottom:0px;
padding:0px 5px;
position:absolute;
z-index:1;
left: 198px;
top: 25px;
}
.list{
line-height:20px;
text-align:left;
padding:4px;
font-weight:normal;
}
.menu1{
width:120px;
height:auto;
margin:6px 4px 0px 0px;
border:1px solid #9CDD75;
background-color:#F1FBEC;
color:#336601;
padding:6px 0px 0px 0px;
cursor:hand;
overflow-y:hidden;
filter:Alpha(opacity=70);
-moz-opacity:0.7;
}
.menu2{
width:120px;
height:18px;
margin:6px 4px 0px 0px;
background-color:#F5F5F5;
color:#999999;
border:1px solid #EEE8DD;
padding:6px 0px 0px 0px;
overflow-y:hidden;
cursor:hand;
}

具体演示:
<script language="JavaScript">ffcod = delpost.runcode5 .value; ffcod = ffcod.replace(/
/g,''); delpost.runcode5 .value = ffcod;</script> 提示:您可以先修改部分代码再运行

以上就是不用JS只用CSS制作的网页下拉菜单。遇到一件事,喜欢它就享受它;不喜欢就避开它;避不开就改变它,改不了就接受它;接收不下,就处理它;难以处理,就放下它。其实,人最难的,是放下。更多关于不用JS只用CSS制作的网页下拉菜单请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
CSS3+HTML5+JS 如何实现一个块的收缩与展开动画效果

如何解决移动端滑动验证时页面跟随移动的问题

javascript隐藏鼠标的方法

javascript压缩与格式化CSS代码的方法

javascript如何实现鼠标拖动div改变其位置的好代码教程