目標:利用html+css實現鼠標移到菜單欄時,菜單欄會緩慢出現的效果
我們可以用兩種方法來解決這個問題
方法一:過渡(transition)
對forum-1開啟絕對定位
(absolute),讓里面的li
從其父元素中脫離出去,不然會把之后的內容往右擠,并且設置overflow:hidden
, 設置高度為0, 鼠標移入后再設置相應的高度即可
.code .forum-1{
/* 開啟絕對定位 */
position: absolute;
overflow: hidden;
height: 0;
transition-duration: 0.5s;
}
html 代碼如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="./css/reset.css">
<title>菜單欄緩慢下拉</title>
</head>
<body>
<ul class="code">
<li><a href="#">博客</a></li>
<li class="forum"><a href="#">論壇</a>
<ul class="forum-1">
<li><a href="#">css</a></li>
<li class="vue"><a href="#">vue</a></li>
<li><a href="#">python</a></li>
</ul>
</li>
<li><a href="#">直播</a></li>
</ul>
</body>
</html>
css 樣式代碼如下:
a{
display: block;
text-decoration: none;
color: #333;
}
.code{
width: 390px;
height: 50px;
line-height: 50px;
background-color:#bfa;
margin: 5px auto;
}
.code li{
float: left;
width: 130px;
height: 50px;
background-color: #bfa;
text-align: center;
margin: 0 auto;
font-size: 20px;
}
.code > li:last-child{
margin-right: 0;
}
.code > li:hover{
background-color: #f8f192;
}
.forum{
position: relative;
margin: auto 90px;
}
.code .forum-1{
/* 開啟絕對定位 */
position: absolute;
overflow: hidden;
height: 0;
transition-duration: 0.5s;
}
.forum:hover .forum-1{
/* 鼠標移入釋放高度 */
height: 150px;
}
試了很多次發(fā)現,transition是不支持display屬性的,也就是說,不能用display:none隱藏菜單欄
方法二:動畫(animation)
首先創(chuàng)建css動畫:
@keyframes frames{
from{
height: 0px;
}
to{
height: 150px;
}
}
然后設置display:none隱藏菜單樣式,把它綁定到forum-1選擇器中,用animation綁定動畫名字,設置持續(xù)時間
.forum-1{
position: absolute;
display: none;
overflow: hidden;
/* 綁定動畫名字并且設置持續(xù)時間 */
animation-name: frames;
animation-duration: 0.5s;
}
當鼠標移入時,設置display屬性為block即可
.forum:hover .forum-1{
display: block;
}
需要注意的一點是,這樣寫的結果會出現一個問題:當鼠標移入不久后二級菜單欄會自動收回,為了避免這種問題,我們可以在forum-1選擇器內部添加一行代碼即可:
.forum-1{
animation-fill-mode: forwards;
}
其余代碼和方法一的代碼相同,這里不再贅述
效果圖如下:
到此這篇關于利用html+css實現菜單欄緩慢下拉效果的示例代碼的文章就介紹到這了,更多相關html+css菜單欄緩慢下拉內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持腳本之家!