-
Notifications
You must be signed in to change notification settings - Fork 7.3k
How to activate a fullPage.js extension
Álvaro edited this page Oct 24, 2016
·
45 revisions
- Access the URL that was sent to your email address when purchasing the extension.
- Fill the required data to obtain the activation key
- Then add the activation key for the specific extension by adding an option in the fullpage.js initialization with the form
nameOfExtension: key
:
For example:
$('#fullpage').fullPage({
faddingEffect: true,
fadingEffectKey: 'ACTIVATION KEY SHOULD BE HERE',
});
Same for the rest of extensions if you are using them. These are are all the extension key options at the moment:
responsiveSlidesKey
continuousHorizontalKey
interlockedSlidesKey
scrollHorizontallyKey
resetSlidersKey
offsetSectionsKey
Remember the use of extensions requires the use of jquery.fullpage.extensions.min.js
instead of the usual fullPage.js file (jquery.fullpage.js
) as explained in the use of extensions.