亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

How to add condition before scrolling operation
P粉738046172
P粉738046172 2023-09-06 00:00:45
0
1
629
<p>I have a problem using the fullpage.js library I need the screen not to scroll when my modal opens. </p> <p>I tried to disable scrolling using onLeave, afterLoad and jQuery, the code is as follows: </p> <pre class="brush:php;toolbar:false;">$(document).ready(function () { $(window).bind("wheel", function (e) { if (document.getElementsByClassName("modalIsOpen").length != 0) { $.fn.fullpage.setAllowScrolling(false); } else { $.fn.fullpage.setAllowScrolling(true); } }); $("#fullpage").fullpage({ normalScrollElements: ".tableContainer", }); });</pre> <p>But the problem with this code is that after the page scrolls once, the page scrolling stops working. It seems that fullpage.js scrolls first and then jQuery stops scrolling. Any ideas? Thank you everyone</p>
P粉738046172
P粉738046172

reply all(1)
P粉195402292

Thanks to @JavierFromMadrid I found the solution But this is not an exact answer to the topic question, but another way to solve the problem One way to solve this problem is to disable fullpagejs scrolling when opening the modal:

$.fn.fullpage.setAllowScrolling(false);

In order to prevent the called function from disabling modal box scrolling, the name of the modal box class needs to be defined in the normalScrollElements option of fullpage.

$("#fullpage").fullpage({
    normalScrollElements: ".modal",
  });
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template