The Taptop visual editor currently doesn’t include a built-in Lottie widget. But the good news is — you can still easily add any Lottie animation manually in just a couple of clicks. Below is a step-by-step guide.
Lottie is an animation format developed by Airbnb that allows you to render animations exported from After Effects (using the Bodymovin plugin) directly in the browser.
In Taptop’s visual editor:
The size of the embed block determines how the animation will be displayed. If your Lottie is responsive, you can use width: 100%.
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.4/lottie.min.js"></script>
<script>
lottie.loadAnimation({
container: document.getElementById('lottie-animation'), // Target container
renderer: 'svg', // Rendering method (svg recommended)
loop: true, // Loop the animation
autoplay: true, // Start playing automatically
path: 'https://site-95943.taptop.site/f/showreel-grid-mobile-remix.json' // Replace with your own JSON URL
});
</script>
You can upload your .json file directly to the Assets section in Taptop. Once uploaded, just click on the file and copy the direct URL — then paste it into the path field.
If you want to bring motion and interactivity into your Taptop project — Lottie is a perfect solution.
And even while we wait for a native widget, this manual method gives you full control today