gpt4 book ai didi

javascript - 点击菜单切换

转载 作者:行者123 更新时间:2023-12-02 14:24:03 25 4
gpt4 key购买 nike

我想在单击时切换 .menu div。这就是我已经取得的进展,我很困惑为什么 javascript 根本不起作用。已经尝试了很多。

非常感谢您的帮助。

http://codepen.io/su1ts/pen/bZLwZN

HTML:

<header>    
<button class="headerButton">
<ul class="hamburger">
<li></li>
<li></li>
<li></li>
</ul>
</button>
</header>

<div class="menu">a</div>

CSS:

header
:width 100%
:height 56px
:color #FFF
:position fixed
:font-size 20px
:z-index 9999
button.headerButton
:width 24px
:height 24px
:text-indent -30000px
:overflow hidden
:border none
:outline none
:cursor pointer
:position absolute
ul.hamburger
:margin-top 4px
:padding 0
li
:height 3px
:width 12px
:background blue
:list-style none
:margin auto
:margin-bottom 2px
:opacity 1
:border-radius 1px
:transition (.25s ease-in-out)

.menu
:width 100%
:height 100%
:background-color rgba(10,10,10,0.95)
:color white
:position fixed
:display none
:z-index 14

JS:

$(document).ready(function() {

$('button.headerButton').click(function() {
$('.menu').toggle();
});

});

最佳答案

我发现您忘记添加 jQuery 引用。添加这个,它将开始工作 -

<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>

关于javascript - 点击菜单切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38433647/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com