gpt4 book ai didi

fullpage.js - 在 Modal 打开时阻止滚动

转载 作者:行者123 更新时间:2023-12-02 07:22:49 52 4
gpt4 key购买 nike

我正在处理这个 website ,(使用 Fullpage.js 插件构建)。在第一部分中,我有一个模态窗口(通过单击 橙色 + 符号)。

如您所见,如果在 Modal 打开时用鼠标滚动,则可以滚动到下一页。

我怎样才能阻止这个? 我只需要在您关闭 Modal 时使其可滚动。

PS:我正在使用 WordPress 如果这可以帮助...

编辑:我试过这个

JS

<script type="text/javascript"> 
$(document).on('click', '.ts-awesome-plus', function() {
$.fn.fullpage.setAllowScrolling(false);
$.fn.fullpage.setKeyboardScrolling(false);
});
</script>

最佳答案

当模态框打开时,您需要使用 $.fn.fullpage.setAllowScrolling(false) 禁用滚动。还有键盘滚动$.fn.fullpage.setAllowScrolling(false) .在模态关闭时只需启用它们。这是一个工作示例,单击 Modal OpenModal Close .

$('#fullpage').fullpage({
anchors: ['page1', 'page2', 'page3', 'page4'],
sectionsColor: ['yellow', 'orange', '#C0C0C0', '#ADD8E6'],
});

//adding the actions to the buttons
$(document).on('click', '#turnOff', function() {
$.fn.fullpage.setAllowScrolling(false);
$.fn.fullpage.setKeyboardScrolling(false);
});

$(document).on('click', '#turnOn', function() {
$.fn.fullpage.setAllowScrolling(true);
$.fn.fullpage.setKeyboardScrolling(true);
});
.section {
text-align: center;
font-size: 3em;
}
/**
Fixed button outside the fullpage.js wrapper
*/

#turnOff,
#turnOn {
position: fixed;
z-index: 999;
font-size: 2em;
cursor: pointer;
top: 20px;
}
#turnOff {
left: 20px;
}
#turnOn {
left: 240px;
}
<link href="https://rawgit.com/alvarotrigo/fullPage.js/master/jquery.fullPage.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://rawgit.com/alvarotrigo/fullPage.js/master/jquery.fullPage.js"></script>

<button id="turnOff">Modal Open</button>
<button id="turnOn">Modal Close</button>


<div id="fullpage">
<div class="section">One</div>
<div class="section">Two</div>
<div class="section">Three</div>
<div class="section">Four</div>
</div>

关于fullpage.js - 在 Modal 打开时阻止滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38264469/

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