jquery 菜单打开时,“overflow-y:hidden”未应用于主体

83qze16e  于 2022-12-22  发布在  jQuery
关注(0)|答案(1)|浏览(128)

我有一个全屏菜单,当用户点击菜单按钮打开菜单"#menu-button"时,我需要禁用主体上的滚动。我很确定下面的代码应该可以通过在菜单按钮被点击时向主体添加类". no-scroll"来工作,但它没有。有人能指出问题可能是什么吗?

var menuAnimation = gsap.timeline({paused:true});
var menuAnimationBack = gsap.timeline({paused:true, reversed: true});
var navMain = document.getElementById("nav-main");
var menuButton = document.getElementById("menu-button");
var toggle = true;

gsap.set('.link',{y:30});

menuAnimation
        .to(navMain, {duration:.8, width: '100%', clipPath: "polygon(0 0, 100% 0, 100% 100%, 0 100%)", ease: "power2.inOut", x:0, y:0, z:0})
.to('.link',{duration:.5,autoAlpha:1,y:0,stagger:.2,ease: "power4.out"});

menuAnimationBack
.to('.link',{duration:.5,autoAlpha:0,y:30,stagger:.2,ease: "power4.out"})
.to(navMain, {duration:0.55,width: 0, clipPath: "polygon(0 0, -100% 0, 100% 100%, 0 100%)", ease: "power4.in", x:0, y:0, z:0});

menuButton.onclick = function() {
  toggle = !toggle;
  toggle === false ? menuAnimation.play(0) : menuAnimationBack.play(0);
};

menuButton.addEventListener('click', () => {   document.body.classList.toggle('no-scroll') });
.no-scroll{
overflow-y:hidden
}
z9smfwbn

z9smfwbn1#

在html标签上添加你的no-scroll类,希望它能为你工作

menuButton.addEventListener('click', () => {
    document.querySelector("html").classList.toggle("no-scroll")
});

相关问题