提问人:Evilcampbell 提问时间:7/10/2023 最后编辑:Heretic MonkeyEvilcampbell 更新时间:9/30/2023 访问量:102
如何停止使用叠加模式滚动?
How to stop scrolling with an overlay modal?
问:
我开始使用机车并制作了一个叠加菜单。 通常我应该使用隐藏的溢出。但在这里它不起作用
.scroll-stop
{
overflow: hidden !important;
}
$('#toggle').click(function() {
$(this).toggleClass('active');
$('#overlay').toggleClass('open');
$('body').toggleClass('scroll-stop');
});
答:
0赞
gatre
9/30/2023
#1
您可以使用 stop() 和 start() 方法来禁用和启用滚动。https://github.com/locomotivemtl/locomotive-scroll#instance-methods
评论