FullPage.js no scrolling / no scrolling

I am having a problem with fullpage.js, which prevents me from scrolling correctly. See the Question at https://www.rewardslive.com/test

I already have jQuery 1.10 uploaded to the site, but the javascript code that is in question is embedded on the page, after the initialization code, which is an extension of the document ready without conflicts in the rewardslive.js inline script.

Going to the page does not present a problem, but when I try to scroll down, the url line changes to https://www.rewardslive.com/test#secondPage - but the actual scroll down is missing and the new content is not updated. I want to keep the title visible, there for all purposes and goals.

Is something missing here? All I want is the main fullpage function, a scroll down function to see more.

Thanks again, George

+4
source share
1 answer

The javascript console shows this error:

Uncaught TypeError: object # does not have the method 'easeInQuart'

This means that you are not importing the jQuery user interface library that the plugin needs, as indicated in the documentation .

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>    

In addition, you have problems with your HTML markup, as you can see in red here .

jquery , , fullPage.js, jquery.

+3

Source: https://habr.com/ru/post/1529517/


All Articles