gpt4 book ai didi

javascript - 使菜单在点击任意屏幕时消失

转载 作者:行者123 更新时间:2023-11-28 15:26:07 25 4
gpt4 key购买 nike

您好,我有这段代码,除了单击屏幕上的任意位置使下拉菜单内容消失之外,它工作完美,我无法重新打开菜单。这是我正在使用的代码以及下面的 jsfiddle 演示。

$(document).click(function (e)
{

var container = $(".dropdown_content");

if (!container.is(e.target) && container.has(e.target).length === 0)
{
container.fadeOut('slow');

}

});
.dropdown {
display: block;
display: inline-block;
margin: 0px 3px;
position: relative;
}

/* ===[ For demonstration ]=== */

.dropdown { margin-top: 50px }

/* ===[ End demonstration ]=== */

.dropdown .dropdown_button {
cursor: pointer;
width: auto;
display: inline-block;
padding: 4px 5px;
font-weight: bold;
color: #000;
line-height: 16px;
text-decoration: none !important;
}

.dropdown input[type="checkbox"]:checked + .dropdown_button {
color: #000;
padding: 4px 5px;
}

.dropdown input[type="checkbox"] + .dropdown_button .arrow {
display: inline-block;
width: 0px;
height: 0px;
border-top: 5px solid #fff;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
}

.dropdown input[type="checkbox"]:checked + .dropdown_button .arrow { border-color: white transparent transparent transparent }

.dropdown .dropdown_content {
position: absolute;
border: 1px solid #fff;
padding: 0px;
margin: 0;
display: none;
padding: 7px;
-webkit-transition: all 500ms ease-in-out;
-moz-transition: all 200ms ease-in-out;
-o-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
-webkit-box-shadow: rgba(0, 0, 0, 0.58) 0px 12px 25px;
-moz-box-shadow: rgba(0, 0, 0, 0.58) 0px 12px 25px;
box-shadow: rgba(0, 0, 0, 0.58) 0px 12px 25px;
background: #fff;
font-size: 12px;
-moz-border-radius: 0 0 4px 4px;
-webkit-border-bottom-right-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
border-radius: 0 0 4px 4px;
min-width: 140px;
}

.dropdown .dropdown_content li {
list-style: none;
margin-left: 0px;
line-height: 16px;
border-top: 1px solid #FFF;
border-bottom: 1px solid #FFF;
margin-top: 2px;
margin-bottom: 2px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
}

.dropdown .dropdown_content li:hover {
background: #d32d41;
text-shadow: 1px 1px 0px #9e2635;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
-webkit-box-shadow: inset 0 0 1px 1px #f14a5e;
-moz-box-shadow: inset 0 0 1px 1px #f14a5e;
box-shadow: inset 0 0 1px 1px #f14a5e;
border: 1px solid #9e2635;
color: #fff;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;

}

.dropdown .dropdown_content li a {
display: block;
padding: 2px 7px;
padding-right: 15px;
color: black;
text-decoration: none !important;
white-space: nowrap;
}

.dropdown .dropdown_content li:hover a {
color: white;
text-decoration: none !important;
}

.dropdown input[type="checkbox"]:checked ~ .dropdown_content { display: block }

.dropdown input[type="checkbox"] { display: none }
<div class="dropdown" id="dropdown">
<input type="checkbox" id="drop1" />
<label for="drop1" class="dropdown_button">click here<span class="arrow"></span></label>
<ul class="dropdown_content">
<li><a href="*">User panel</a></li>
<li><a href="*">Log out</a></li>
<li><a href="*">Edit profile</a></li>
<li><a href="*">Edit options</a></li>
<li><a href="*">Edit avatar</a></li>
<li><a href="*">Edit signature</a></li>
<li><a href="#">Buddy list</a></li>
</ul>
</div>

JSFIddle 演示在这里

http://jsfiddle.net/andreas84x/x5wvnzt7/5/

最佳答案

这是因为级联顺序:

  1. 浏览器默认
  2. 外部样式表
  3. 内部样式表
  4. 内联

当您在下拉菜单外单击时,它会将样式属性更改为显示:无。现在,当您尝试在 css 中将显示更改为 block/inline-block 时,它不会生效,因为仍然是 inline display: none 具有优先权。

解决方案:在单击按钮时使用淡入(删除此 css 修复):)

关于javascript - 使菜单在点击任意屏幕时消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26334958/

25 4 0