Onclick 功能侧边栏

时间:2021-03-09 21:26:31

标签: javascript html css

我是 Javascript 新手,我最近一直在尝试侧边栏菜单。

我试图让菜单从左侧出现并在单击汉堡包图标时覆盖主要内容。我设法让菜单覆盖了主要内容,但是当涉及到 javascript 动画时,我尝试了一些方法并在互联网上搜索,但没有找到解决我的问题的方法。

我试图让当点击 .hamburger 按钮时,.nav-links div 的宽度从 0px 变为 300px。

这是我的代码和我尝试过的几个 Javascript 函数。

这是我的代码

HTML:

<button class="hamburger">
            <div class="line"></div>
            <div class="line"></div>
            <div class="line"></div>
        </button>
            <div class="nav-links">
                <ul>
                    <a href="#">HEN</a>
                    <a href="#">BBG</a>
                    <a href="#">YSMB</a>
                    <div class="CloseBTN">&times;</div> 
                </ul>
            </div>`

CSS

`

.line {
  width: 30px;
  height: 3px;
  background: white;
  margin: 5px;
}

.hamburger {
  position: relative;
  cursor: pointer;
  z-index: 1;
  top: 0px;
  background: inherit;
  border: none;
  display: block;
  outline: none;
}

.nav-links {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 0px;
  background-color: rgb(0, 0, 0);
  z-index: 1;
  padding-top: 100px;
  overflow-x: hidden;
  border: solid white 1px;
}
.nav-links a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 20px;
  display: block;
  padding: 50px 8px 50px 64px;
  color: white;
  text-align: center;
}

.nav-links a:hover {
  background: white;
  color: black;
}

.CloseBTN {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  margin-left: 32px;
  cursor: pointer;
}

JavaScript

document.getElementById('hamburger') = function openMenu(){
    document.getElementById('nav-links').menu.style.width="300px";
        }

 function openMenu(){
            if(document.getElementById('nav-links').click === true)
            document.getElementById('nav-links').menu.style.width="300px";  
        }

1 个答案:

答案 0 :(得分:0)

试试这个:

document.getElementsByClassName('hamburger')[0].addEventListener("click", evt => {
  document.getElementsByClassName('nav-links')[0].style.width = "300px"
})
document.getElementsByClassName('CloseBTN')[0].addEventListener("click", evt => {
  document.getElementsByClassName('nav-links')[0].style.width = "0"
})
.line {
  width: 30px;
  height: 3px;
  background: white;
  border: 5px solid black;
  margin: 5px;
}

.hamburger {
  position: relative;
  cursor: pointer;
  z-index: 1;
  top: 0px;
  background: inherit;
  border: none;
  display: block;
  outline: none;
}

.nav-links {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 0px;
  background-color: rgb(0, 0, 0);
  z-index: 1;
  padding-top: 100px;
  overflow-x: hidden;
  border: solid white 1px;
}

.nav-links a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 20px;
  display: block;
  padding: 50px 8px 50px 64px;
  color: white;
  text-align: center;
}

.nav-links a:hover {
  background: white;
  color: black;
}

.CloseBTN {
  color: white;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  margin-left: 32px;
  cursor: pointer;
}
<button class="hamburger">
            <div class="line"></div>
            <div class="line"></div>
            <div class="line"></div>
        </button>
<div class="nav-links">
  <ul>
    <a href="#">HEN</a>
    <a href="#">BBG</a>
    <a href="#">YSMB</a>
    <div class="CloseBTN">&times;</div>
  </ul>
</div>

你的一些 javascript 搞砸了,所以我解决了这个问题,我添加了一些 css 以使所有内容(例如实际的菜单行本身)可见。