html点击按钮弹出侧边栏
时间: 2023-07-11 15:32:52 浏览: 131
jQuery右侧弹出侧边栏导航菜单代码
你可以使用 HTML、CSS 和 JavaScript 来实现这个功能。以下是一个简单的实现示例:
1. HTML 代码
```html
<!DOCTYPE html>
<html>
<head>
<title>侧边栏示例</title>
<style>
.sidebar {
height: 100%;
width: 0;
position: fixed;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
padding-top: 60px;
transition: 0.5s;
}
.sidebar a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.sidebar a:hover {
color: #f1f1f1;
}
.sidebar .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
.openbtn {
font-size: 20px;
cursor: pointer;
background-color: #111;
color: white;
padding: 10px 15px;
border: none;
}
.openbtn:hover {
background-color: #444;
}
</style>
</head>
<body>
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="#">链接 1</a>
<a href="#">链接 2</a>
<a href="#">链接 3</a>
</div>
<button class="openbtn" onclick="openNav()">☰ 打开侧边栏</button>
<script>
function openNav() {
document.getElementById("mySidebar").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidebar").style.width = "0";
}
</script>
</body>
</html>
```
2. CSS 代码
这里使用了一个名为 `sidebar` 的类来定义侧边栏的样式,包括它的高度、宽度、位置、背景颜色、内边距等。
3. JavaScript 代码
用来控制侧边栏的打开和关闭。
通过点击 `openbtn` 按钮,调用 `openNav()` 函数打开侧边栏,关闭按钮通过 `closeNav()` 函数来实现。
希望这个示例对你有所帮助!
阅读全文