Skip to content
tomByrer edited this page Jul 21, 2014 · 2 revisions

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.

[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:

Live demo & Slides demo

<div id="fullpage">
    <div class="section">One</div>
</div>
<br>fullPage.js is cool!
<div class="box">more text</div>
  1. Turn off mousewheel/trackpad/touch: $.fn.fullpage.setAllowScrolling(false);
  2. Turn off scrolling via arrow keys: $.fn.fullpage.setKeyboardScrolling(false);
Clone this wiki locally