jquery 如何使用叠加模式停止滚动?

gmxoilav  于 2023-10-17  发布在  jQuery
关注(0)|答案(1)|浏览(79)

我开始使用火车头并制作了一个覆盖菜单。通常我应该使用一个隐藏的溢出。但在这里它不起作用

.scroll-stop
{
    overflow: hidden !important;
}
$('#toggle').click(function() {
    $(this).toggleClass('active');
    $('#overlay').toggleClass('open');
    $('body').toggleClass('scroll-stop');
});
nmpmafwu

nmpmafwu1#

可以使用stop()和start()方法来禁用和启用滚动。https://github.com/locomotivemtl/locomotive-scroll#instance-methods

相关问题