How To...? - alvarotrigo/fullPage.js GitHub Wiki

These are short instructions & tips on how to use fullPage.js. If you add yours, please: link to the source question & answer, link example(s), and write as brief as possible.

One section only

[How can I] use only one single piece of my website as a "section" to pass through only one scroll, and the rest of the website use it normally?

You can use the option autoScrolling:false for it. Then add anything you want under the plugin wrapper:

Slides demo & front page demo

Navigate between sections by clicking anchors only

  1. Turn off mousewheel/trackpad/touch: $.fn.fullpage.setAllowScrolling(false);
  2. Turn off scrolling via arrow keys: $.fn.fullpage.setKeyboardScrolling(false);