作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试构建自己的响应式移动导航。这是我的第一次尝试,但我已经走得很远了。它有效,但我在正确切换时遇到问题。
这是我的代码:
function classToggle() {
var navigation = document.querySelectorAll('.nav-links')
navigation.forEach(nav => nav.classList.toggle('mobile-navigation'));
}
document.querySelector('.menu-toggle-button').addEventListener('click', classToggle);
document.querySelector('.nav-links').addEventListener('click', classToggle);
nav {
display: flex;
position: absolute;
width: 100%;
padding: 1rem 2rem;
}
.nav-links {
display: none;
}
.nav-links li {
text-align: center;
list-style-type: none;
margin: 1.7em 0 0 0;
padding: 0
}
nav,
.nav-links {
flex-direction: column;
}
.menu-toggle-button {
align-self: flex-end;
position: absolute;
margin-top: 1rem;
cursor: pointer;
}
.mobile-navigation {
display: flex;
justify-content: center;
background-color: black;
margin: 0;
padding: 0;
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
@media (min-width: 992px) {
/* Navigation */
.mobile-navigation {
flex-direction: row;
}
.nav-links {
display: flex;
margin-left: auto;
height: auto;
padding: 0;
}
.nav-links,
nav {
flex-direction: row;
}
.nav-links li {
margin-top: 0;
margin-left: 2.6em;
}
.menu-toggle-button {
display: none;
}
<nav class="navbar">
<div class="brand">
<p>Logo</p>
</div>
<div class="menu-toggle-button">
<span>|||</span>
</div>
<ul class="nav-links">
<li>
<a href="javascript:void(0)">Risus Baulits</a>
</li>
<li>
<a href="javascript:void(0)">Sodales Vapien</a>
</li>
<li>
<a href="javascript:void(0)">Fermentum</a>
</li>
<li>
<a href="javascript:void(0)">Posuere Risus!</a>
</li>
</ul>
</nav>
https://codepen.io/anon/pen/MzJOrG
我不明白的是如何将点击事件添加到已经有类 mobile-navigation 的菜单中,这样当菜单出现时该类就不会在大屏幕上切换是一排简单的链接。我不想使用 jQuery。
谢谢。
最佳答案
这个概念是使用 CSS 媒体查询根据视口(viewport)大小(窗口大小)显示/隐藏切换按钮, 例如:
//hide the toggle button
.menu-toggle-button {
display: none
}
//show the toggle button if window size is less than 768
@media only screen and (max-width: 768px) {
display: block
}
这样按钮就不会显示在桌面上,因为点击事件也是如此
关于javascript - JS - 如何仅在已经切换的情况下切换 CSS 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53282827/
我是一名优秀的程序员,十分优秀!