gpt4 book ai didi

html - 移动下拉菜单不会消失

转载 作者:行者123 更新时间:2023-11-28 02:57:33 25 4
gpt4 key购买 nike

我的移动网站有这个下拉菜单。问题是,在下拉菜单外单击时它不会消失。因此,当单击该按钮时,除了从菜单中选择其他站点之一外,无法再次摆脱菜单。当它显示时,如果您点击它以外的地方,是否有可能使其消失?

这是我的代码:

/* Dropdown Button */
.dropbtn {
background-color: #948a69;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
background-color: #9e9370;
}
<div style="position:absolute; top:15px; left:15px;">
<div class="dropdown">
<button class="dropbtn"><b>MENU</b></button>
<div class="dropdown-content">
<a href="index.html">Velkommen</a>
<a href="bock.html">Produkter</a>
<a href="fadol.html">Fadøl</a>
<a href="historie.html">Historie</a>
<a href="kontakt.html">Kontakt </a>
</div>
</div>
</div>

最佳答案

我刚刚遇到了同样的问题,并从这里找到了解决方案:
http://www.cssplay.co.uk/menus/cssplay-ipad-dropdown-menu-fixed.html

修复的核心是使用透明图像强制执行我们想要的浏览器行为。添加此 CSS:

// For the Safari mobile browser
div img.close {
display: none;
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
z-index: -1;
}

div button:hover + img {
display: block;
}

然后将其添加到您的 HTML 中,在最后一个 </div> 之前:

<img class="close" src="ipad/trans.gif" />

我个人将其与列表而不是按钮一起使用,因此可能需要进行一些调整。但我可以使用列表(基于 <ul><li> 的菜单)确认它是否有效。

关于html - 移动下拉菜单不会消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36307972/

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