gpt4 book ai didi

css - 水平导航到垂直响应式导航,响应式导航顶层高度过高,最后一个下一级导航消失

转载 作者:行者123 更新时间:2023-11-28 06:27:18 26 4
gpt4 key购买 nike

我已将水平导航转换为垂直响应式导航,但是当您通过点击“菜单”打开响应式导航顶层 (ul li) 时,ul li 的高度过高(参见顶层下方的灰色区域)下一级的最后一个菜单点消失(菜单 1 应该有 7 个子级菜单点 ul li ul li a's,菜单 2 应该有 5 个,菜单 3 应该有 3 个)。

我发现这与桌面版的以下 CSS 有关,但不知道如何解决该问题:

            ul.topNav li ul {
display: none;
**position: absolute;
top: 2.3rem;**
background-color: rgb(245, 245, 245);
}

尝试了很多,但没有成功。您可以在下面找到所有代码和使其运行并查看结果的链接。不要忘记在 320 和 979 像素之间调整窗口大小,并可能重新加载以确保其正常工作。

function init() {

var ww = document.body.clientWidth;
var mobileLayout = ww <= 1024;

if (mobileLayout) {
/* show topNav */
$("#menuIcon").click(function () {
$("#topNavResp").fadeToggle(100);
});
/* show topNav second level and close all others */
$('.topNavLi').on('click', function (event) {
event.preventDefault();
$(this).next('ul').slideToggle();

$(this).parent().siblings().children().next().slideUp();
return false;
});

} else {
alert('please reduce/shrink your window and reload');
}
}
            html {
font-size: 15px;
background-color: rgba(227, 227, 227, 1);
}
ol, ul, li {
list-style-type: none;
}
a {
text-decoration: none;
}

/* ------------------- TOP NAV BAR ------------------------------------------ */

#headerNavBar {
width: 100%;
height: 2.4rem;
line-height: 2.4rem;
display: block;
background-color: #D3D3D3;
*zoom: 1;
}

ul.topNav {
float: right;
width: 75%;
height: 2.3rem;
position: relative;
z-index: 10;
}
ul.topNav > li {
line-height: 2.3rem;
float: left;
width: auto;
position: relative;
}

ul.topNav li a.topNavLi {
height: 2.3rem;
float: left;
padding: 0 10.3%;
}
ul.topNav li a:hover.topNavLi,
ul.topNav li:active a.topNavLi,
ul.topNav li:hover a.topNavLi {
border-bottom: 0.13rem solid #e23427;
color: #e23427;
}

/* ------------------- TOP NAV 2nd LEVEL------------------------------------- */

ul.topNav li ul {
display: none;
position: absolute;
top: 2.3rem;
background-color: rgb(245, 245, 245);
}
ul.topNav li ul li {
float: none;
display: block;
}
ul.topNav li ul li a {
display: block;
color: #231f20;
}
ul.topNav li ul li:hover,
ul.topNav li ul li:active {
background-color: rgb(227, 33, 33);
}
ul.topNav li ul li:hover a,
ul.topNav li ul li:active a {
color: #fff;
}
/**************************************************************************** */
/**************************************************************************** */
@media only screen and (min-width: 320px) and (max-width: 979px)
{
body {
width: 95%;
margin: 0 auto;
}
#wrapper {
width: 100%;
}
#pageHead {
width: 100%;
}

/* ------------------- NAVI Responsive --------------------------------- */
#headerNavBar {
height: 2.9rem;
line-height: 2.9rem;
position: relative;
}

#menuIcon {
display: block;
position: absolute;
top: 0;
right: 0;
padding: 0.3rem 1rem 0 0;
}
ul.topNav {
display: none;
float: none;
width: 100%;
position: absolute;
top: 2.9rem;
}
.topNav > li {
width: 100% !important;
background-color: #D3D3D3;
display: block;
position: static;
border-bottom: 1px solid #FFF;
}
ul#topNavResp.topNav li a.topNavLi,
ul#topNavResp.topNav li ul li a {
width: 100%;
}
ul.topNav li a:hover.topNavLi,
ul.topNav li:active a.topNavLi,
ul.topNav li:hover a.topNavLi {
border: none;
}
/* ------------------- TOP NAV Responsive 2nd LEVEL ------------------------- */
ul.topNav li ul {
display: none;
width: 100%;
position: static;
padding-left: 10.3%;
background-color: rgb(245, 245, 245);
}
ul.topNav li ul li {
width: 100%;
}
}
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body onload="init();">
<div id="wrapper">
<div id="pageHead">

<nav id="headerNavBar">

<a href="#" id="menuIcon">MENU</a>


<ul class="topNav" id="topNavResp">
<li>
<a href="#" class="topNavLi">Menu 1</a>
<ul>
<li><a href="#">11111</a></li>
<li><a href="#">22222</a></li>
<li><a href="#">33333</a></li>
<li><a href="#">44444</a></li>
<li><a href="#">55555</a></li>
<li><a href="#">66666</a></li>
<li><a href="#">77777</a></li>
</ul>
</li>
<li>
<a href="#" class="topNavLi">Menu 2</a>
<ul>
<li><a href="#">11111</a></li>
<li><a href="#">22222</a></li>
<li><a href="#">33333</a></li>
<li><a href="#">44444</a></li>
<li><a href="#">55555</a></li>
</ul>
</li>
<li>
<a href="#" class="topNavLi">Menu 3</a>
<ul>
<li><a href="#">11111</a></li>
<li><a href="#">22222</a></li>
<li><a href="#">33333</a></li>
</ul>
</li>

</ul>

</nav><!-- end topNav -->
</div>

</div><!-- end wrapper -->

</body>
</html>

最佳答案

改变规则:

@media only screen and (max-width: 979px) and (min-width: 320px){
ul.topNav li ul {
...
定位:继承;
}
}

收件人:

@media only screen and (max-width: 979px) and (min-width: 320px){
ul.topNav li ul {
...
位置:静态;
}
}

关于css - 水平导航到垂直响应式导航,响应式导航顶层高度过高,最后一个下一级导航消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35185365/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com