我为自己的网站做了一个Hamburger Menu Button。我使用html和CSS中的标签进行设计。我使用javascript使其可点击,除非有问题。仅菜单按钮的第一行是可单击的。我注意到当我进入网站上的Inspect Element时,它会发生变化:
apt-get install php7.1-xml
到
service apache2 restart
然后,如果我粘贴正确的代码,它将正常工作。
`.box-shadow-menu {
position: absolute;
padding-right: 1px;
width: 25px;
height: 20px;
cursor: pointer;
}`
`.box-shadow-menu {
position: absolute;
padding-right: 20px;
}`
function ViewsDisplay1() {
var x = document.getElementById("ViewCountDisplay");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}