可折叠的div
是指一个可以通过用户交互(如点击按钮)来展开或折叠的容器。这种设计通常用于节省页面空间,只在需要时显示内容。
div
的高度或显示状态。max-height
属性和过渡效果实现折叠效果。<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>可折叠的div示例</title>
<style>
.collapsible {
background-color: #f1f1f1;
color: #333;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #ccc;
}
.content {
padding: 0 18px;
display: none;
overflow: hidden;
background-color: #f1f1f1;
}
</style>
</head>
<body>
<h2>可折叠的div示例</h2>
<button class="collapsible">点击展开/折叠</button>
<div class="content">
<p>这里是可以折叠的内容。</p>
</div>
<script>
var coll = document.getElementsByClassName("collapsible");
for (var i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
</body>
</html>
transition: max-height 0.5s ease-out;
。max-height
属性。display: none;
来隐藏内容,这种方式不需要预先知道内容的高度。通过以上方法,你可以创建一个简单且功能齐全的可折叠div
,提升页面的交互性和用户体验。
领取专属 10元无门槛券
手把手带您无忧上云