Yes, it's possible to incorporate custom Webflow animations into slide transitions in fullpage.js, including vertical sliders, but it requires integration between Webflow's animation triggers and fullpage.js's callback functions.
onLeave
, afterLoad
, and afterSlideLoad
.onLeave
(for section change) and afterLoad
to detect when a section has finished loading.Webflow.require('ix2').actions
module, or better, trigger animations with embedded elements set to animate on a custom class.onLeave
or afterLoad
callback to add/remove that class dynamically.Example (not raw code, just flow):
.start-animation
is applied.onLeave(origin, destination, direction)
, add the class .start-animation
to the animated element, then remove it after the animation (or in the next transition).setTimeout
inside onLeave
to allow the animation to play before sliding.fullpage_api.moveSectionDown()
manually after the animation finishes.Yes, you can use custom Webflow animations during vertical slide transitions with fullpage.js by triggering class-based animations through fullpage.js callback events. This requires syncing the animation with the slider lifecycle manually using JavaScript.