jQuery 2級ナビゲーションメニューの例を実現します。
6746 ワード
実用的なJQはナビゲーションの2級のメニュー効果を実現して、ナビゲーションメニューはウェブサイトの中でとてもよくあって、あるウェブサイトは3級のメニューと多級のメニューのモードが現れるかもしれなくて、次に私達は簡単に1つの2級のメニューの効果を実現しにきます。
部分効果のスクリーンショット:
全体コード:
部分効果のスクリーンショット:
全体コード:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> </title>
<style>
*{
padding: 0;
margin: 0;
}
ul,li{
list-style: none;
}
a{
text-decoration: none;
}
nav{
width: 1140px;
height: 40px;
margin: 0 auto;
border:solid 1px #CCC;
position: relative;
}
nav ul li{
width: 150px;
line-height: 40px;
float: left;
}
nav ul li a{
display: block;
width: 100%;
float: left;
color: #444;
font-size: 14px;
text-align: center;
}
nav>ul>li:hover{
background: #f5f5f5;
}
nav ul li ul{
display: none;
width: 150px;
position: absolute;
background-color: #f5f5f5;
overflow: hidden;
top:41px;
}
nav ul li ul li{
float: left;
border-bottom: solid 1px #CCC;
}
nav ul li ul li:last-child{
border: none;
}
nav>ul>li>ul>li:hover a{
background-color: #444;
color: #FFF;
}
</style>
</head>
<body>
<br />
<br />
<nav>
<ul>
<li><a href="" title=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" "> </a></li>
<li><a href="" title=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" "> </a></li>
<li><a href="" title=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" "> </a></li>
<li>
<a href="" title=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" "> </a>
<ul>
<li><a href="" title=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" "> </a></li>
<li><a href="" title=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" "> </a></li>
</ul>
</li>
<li>
<a href="" title=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" "> </a>
<ul>
<li><a href="" title=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" "> </a></li>
<li><a href="" title=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" "> </a></li>
</ul>
</li>
<li><a href="" title=" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" "> </a></li>
</ul>
</nav>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script>
var $li = $("nav > ul > li");
$li.mouseenter(function () {
$(this).children("ul").stop().slideDown();
});
$li.mouseleave(function () {
$(this).children("ul").stop().slideUp();
});
</script>
</body>
</html>
以上がjQueryの二級ナビゲーションメニューの例の詳細です。jQueryの二級ナビゲーションメニュー実現に関する資料は他の関連記事に注目してください。