fadingEffect: true
in the new fullpage()
call and ensure the wrapper has ID fullpage
with section
class for children.overflow: hidden
on html/body to avoid conflicts.If the Fading Effect from fullPage.js isn't working in your Webflow project, the issue is likely due to incorrect library setup, missing initialization options, or Webflow conflicting with the plugin. Here's how to troubleshoot and fix it.
https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/4.0.20/fullpage.min.css
https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/4.0.20/fullpage.min.js
custom code section, properly initialize the library with the fading effect.
fadingEffect: true
and include it in the plugin settings:new fullpage('#fullpage', { fadingEffect: true, licenseKey: 'YOUR_KEY' });
#fullpage
is the ID of your main container in Webflow.#fullpage
.section
.fullpage
(set in the Element Settings panel).section
.overflow: hidden
, particularly for fullPage.js to control scroll behavior.undefined
references, especially to fullpage
.To fix a non-working Fading Effect from fullPage.js in Webflow, confirm you’re loading the correct version, initializing it with fadingEffect: true
, using the required HTML structure, and disabling conflicting Webflow features like smooth scroll or overflow settings. Check the console for errors or missing dependencies.