P粉1954022922023-09-06 13:24:23
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", });