赞
踩
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.sidebar {
width: 200px;
height: 100vh;
background-color: #f1f1f1;
overflow: hidden;
transition: width 0.3s;
}
.menu {
list-style-type: none;
padding: 0;
}
.menu li {
padding: 10px;
}
.toggle-button {
padding: 10px;
margin: 10px;
}
.collapsed {
width: 80px;
}
</style>
</head>
<body>
<div class="sidebar">
<button class="toggle-button" οnclick="toggleSidebar()">Toggle</button>
<ul class="menu">
<li>首页</li>
<li>我们的实力</li>
<li>新闻中心</li>
</ul>
</div>
</body>
<script>
function toggleSidebar() {
const sidebar = document.querySelector('.sidebar');
sidebar.classList.toggle('collapsed');
}
</script>
</html>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。