-
Notifications
You must be signed in to change notification settings - Fork 7.3k
How To...?
tomByrer edited this page Jul 23, 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:
- Turn off mousewheel/trackpad/touch:
$.fn.fullpage.setAllowScrolling(false);
- Turn off scrolling via arrow keys:
$.fn.fullpage.setKeyboardScrolling(false);