gpt4 book ai didi

javascript - JS - 如何仅在已经切换的情况下切换 CSS 类

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

我正在尝试构建自己的响应式移动导航。这是我的第一次尝试,但我已经走得很远了。它有效,但我在正确切换时遇到问题。

这是我的代码:

 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/

25 4 0
文章推荐: html - 将文本区域设置为内容的精确宽度
文章推荐: javascript - WordPress 强制脚本在插件之后加载
文章推荐: javascript - 使用 IndexedDB 创建多个对象存储时,Safari 7.1 中出现 UnknownError
文章推荐: javascript - 如何创建自定义