@media JavaScript 中的屏幕



我编写了这个脚本。如果窗口大小小于1000px,则可以展开菜单点。但是,如果折叠菜单点并增加窗口大小,菜单点仍保持隐藏状态。我不让它再淡入。

.HTML:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<nav>
<h2>S U P E R</h2>
<button class="button" onclick="fold()">FOLD</button>
<div id="folding">
<a>Under Construction 1</a><br>
<a>Under Construction 2</a><br>
<a>Under Construction 3</a><br>
<a>Under Construction 4</a><br>
</div>
</nav>
</body>
</html>

.CSS:

#folding {
display: block;
}
.button {
display: none;
}
@media screen and (max-width: 1000px) {
.button {
display: block;
} 
#folding {
display: none;
}
body {
background-color: red;
}
}

.JS:

function fold() {
  var x = document.getElementById("folding");
  if (x.style.display === "block") {
    x.style.display = "none";
  } else {
    x.style.display = "block";
  }
}

你的问题在于 css 特异性(请参阅特异性(。实现目标的一个简单快速(不是很好(的解决方案是反转媒体逻辑并应用重要的属性以覆盖内联规则display:none;

.button {
  display: block;
}
#folding {
  display: none;
}
@media screen and (min-width: 1000px) {
 #folding { 
  display: block !important;
 }
 .button {
  display: none;
 }
}

当您执行x.style.display = "none";时,您将添加优先于类和 id 样式的内联样式。执行所需操作的最佳方法是创建不同的类(.folding-visible 等(并根据视口控制将应用哪个类。

相关内容

  • 没有找到相关文章

最新更新