getLottie()
and controls playback with .play()
, .pause()
, and .stop()
.playBtn
, pauseBtn
, stopBtn
) and add event listeners to trigger animation controls.Yes, Lottie animations in Webflow can be controlled using JavaScript. Webflow does not provide built-in controls for play, pause, and stop, but you can achieve this using Lottie’s JavaScript API.
lottieAnimation
).section via Webflow’s custom code settings:
document.addEventListener("DOMContentLoaded", function () { var lottieElement = document.getElementById("lottieAnimation"); if (lottieElement) { var lottieInstance = lottieElement.getLottie(); // Example event listeners document.getElementById("playBtn").addEventListener("click", function () { lottieInstance.play(); }); document.getElementById("pauseBtn").addEventListener("click", function () { lottieInstance.pause(); }); document.getElementById("stopBtn").addEventListener("click", function () { lottieInstance.stop(); }); }});
playBtn
pauseBtn
stopBtn
getLottie()
is Webflow-specific and exposes controls for Webflow’s native Lottie component.You can control a Webflow Lottie animation using JavaScript by retrieving the instance via getLottie()
and calling .play()
, .pause()
, or .stop()
. Ensure your Lottie element has an ID, and set up buttons with event listeners for interactivity.