Webflow sync, pageviews & more.
NEW

Is it possible to incorporate a custom animation created in Webflow between transitions of slides in a vertical slider using fullpage.js?

TL;DR
  • Add fullPage.js to Webflow via a CDN and initialize it in the Footer Code with an onLeave event.
  • Create a custom Webflow animation, set it to Trigger on Page Load, and reference it in JavaScript.
  • Modify onLeave in fullPage.js to trigger the Webflow animation via Webflow.require("ix2").init() and a click event.
  • Use setTimeout if needed to adjust animation timing before the slide transition occurs.

Yes, you can incorporate a custom Webflow animation between slide transitions when using fullPage.js, but it requires custom JavaScript to synchronize Webflow interactions with fullPage.js events.

1. Add Fullpage.js to Your Webflow Project

  • Include fullPage.js in your project by adding it via a CDN in your Project Settings > Custom Code > Footer:
    ```html```
  • Initialize fullPage.js in your Page Settings > Footer Code:
    ```html```

2. Create a Custom Webflow Animation

  • Design the animation in Webflow Interactions & Animations (e.g., SlideTransition).
  • Make sure it’s set to "Trigger on Page Load" so it can be called manually via JavaScript.

3. Trigger Webflow Animation on Slide Change

  • Modify the onLeave function inside fullPage.js initialization to trigger Webflow’s animation:
    ```html```
  • Ensure the element assigned to play this Webflow animation has an attribute:
    data-wf-animation="SlideTransition".

4. Adjust Transition Timing

  • If Webflow animation delays slide transition, use setTimeout:
    ```html
    onLeave: function (origin, destination, direction) {
    document.querySelector('[data-wf-animation="SlideTransition"]').click();
    setTimeout(() => {
    fullpage_api.moveSectionDown();
    }, 1000); // Adjust timing based on animation duration
    }
    ```

Summary

You can integrate Webflow animations with fullPage.js transitions by triggering Webflow interactions within the onLeave event of fullPage.js. Make sure to properly initialize Webflow animations using Webflow.require("ix2").init() to ensure smooth transitions.

Rate this answer

Other Webflow Questions