成 人 黄 色 片 在线播放I久操免费视频I9999在线观看I欧美日韩一区二区三区视频I亚洲激情视频I天天综合五月天I色婷婷综合激情I婷色

變換菜單展示及制作

2016/12/16 8:35:17   閱讀:1958    發布者:1958

效果圖:

點擊菜單   中英文切換

css樣式:

 

.top-nav
{
font-size: 12px;
font-weight: bold;
list-style: none;
border-bottom: 8px solid #DC4E1B;
overflow: auto;

//去浮動,使下級的浮動自適應或 overflow:hidden;
}
.top-nav li
{
float: left;
margin-right: 1px;
}
.top-nav li a
{
line-height: 20px;
text-decoration: none;
background: #DDDDDD;
color: #666666;
display: block;
width: 80px;
text-align: center;
}

/*設置正常狀態英文菜單隱藏*/
.top-nav li a span{
display:none;
}

/*鼠標移動到鏈接上面時將英文菜單顯示*/
.top-nav li a:hover span{
display:block;
}

/*鼠標移動到鏈接上面時將中文菜單位置上移*/
.top-nav li a:hover{
margin-top:-20px;
}