admin管理员组文章数量:1351978
Instead of showing content when hover on the dropdown, click it to show the drop down. Is this possible to do without JQuery or plugins? I have seen some example but it is a bit plicated as there is a lot of styling.
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #3e8e41;
}
<div class="dropdown">
<button class="dropbtn">Dropdown</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
Instead of showing content when hover on the dropdown, click it to show the drop down. Is this possible to do without JQuery or plugins? I have seen some example but it is a bit plicated as there is a lot of styling.
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #3e8e41;
}
<div class="dropdown">
<button class="dropbtn">Dropdown</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
Simple explanation would be highly appreciated, Thanks!
Share Improve this question edited Aug 29, 2019 at 3:10 Yong 427 bronze badges asked Jul 11, 2018 at 2:46 Anonymous Y - 杨z强Anonymous Y - 杨z强 2171 gold badge4 silver badges22 bronze badges 1- It's a little bit more JavaScript code. Do you want to do this with JavaScript? – Saral Commented Jul 11, 2018 at 2:57
3 Answers
Reset to default 4The best non-JavaScript answer, and perhaps best solution, is to use a input[type='checkbox']:checked + label
bination.
This way, the menu will toggle open or close only on user clicks.
Note that I made your button
into the label. The for
attribute must be set to the id
of the checkbox. Also, shoot the checkbox off screen so that only the label is visible. By making it a label, set display: block
and cursor:pointer
to mimic the button design.
If you use the general sibling ~
and the adjacent sibling +
selectors, you can show your menu when the checkbox is checked. See below.
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
position: relative;
display:block;
cursor:pointer;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropcheck {
position: absolute;
left: -9999px;
}
.dropcheck:checked ~ .dropdown-content {
display: block;
}
.dropcheck:checked + .dropbtn {
background-color: #3e8e41;
}
<div class="dropdown">
<input id="dropcheck" class="dropcheck" type="checkbox">
<label for="dropcheck" class="dropbtn">Dropdown</label>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
I will suggest you go with a Javascript route.
When the click
event happens, add a class to the DOM and style the drop down accordingly. In this example, I'm toggling the class-name show-menu
whenever the button is clicked.
var dropDown = document.querySelector(".dropbtn");
var dropDownDiv = document.querySelector(".dropdown");
dropDown.addEventListener("click", function(){
dropDownDiv.classList.toggle('show-menu');
});
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.show-menu .dropdown-content {
display: block;
}
.show-menu .dropbtn {
background-color: #3e8e41;
}
<div class="dropdown">
<button class="dropbtn">Dropdown</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
Using the .div:active in css would be your solution.
本文标签: javascriptShow dropdown on click instead of hoverStack Overflow
版权声明:本文标题:javascript - Show dropdown on click instead of hover - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743905752a2559490.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论