Scrolls one section down
Scrolls one section up
Scrolls the horizontal slider of the current section to the previous slide
Scrolls the horizontal slider of the current section to the next slide
Scrolls the page to the given section and slide. The first slide, the visible one by default, will have index 0.
Updates the DOM structure to fit the new window size or its contents. Ideal to use in combination with AJAX calls or external changes in the DOM structure of the site.
Adds or remove the possibility of scrolling through sections by using the mouse wheel/trackpad or touch gestures (which is active by default). Note this won't disable the keyboard scrolling. You would need to use setKeyboardScrolling for it.
Directions: (optional parameter) Admitted values: all, up, down, left, right or a combination of them separated by commas like down, right. It defines the direction for which the scrolling will be enabled or disabled.
Sets the scrolling configuration in real time. Defines the way the page scrolling behaves. If it is set to true, it will use the "automatic" scrolling, otherwise, it will use the "manual" or "normal" scrolling of the site. Be careful when combining this option with scrollOverflow set to true, as it might be difficult to scroll using the mouse wheel or the trackpad when the section is scrollable
Sets the value for the option fitToSection determining whether to fit the section in the screen or not.
Adds or remove the possibility of scrolling through sections by using the keyboard arrow keys (which is active by default).
Directions: (optional parameter) Admitted values: all, up, down, left, right or a combination of them separated by commas like down, right. It defines the direction for which the scrolling will be enabled or disabled.
Sets the value for the option lockAnchors determining whether anchors will have any effect in the URL or not.
Defines whether to record the history for each hash change in the URL
Defines the scrolling speed in milliseconds
Exactly the same as moveTo but in this case it performs the scroll without animation. A direct jump to the destination.
Generated using TypeDoc
Destroys the plugin events and optionally its HTML markup and styles. Ideal to use when using AJAX to load content.
type: can be empty or all. If all is passed, the HTML markup and styles used by fullpage.js will be removed. This way the original HTML markup, the one used before any plugin modification is made, will be maintained.