JSFiddle - React, Tailwind, and code Playground

by Code_Garage

HTML

<div id="lottie-animation" style="width: 300px; height: 300px;"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.12.2/lottie.min.js"></script>
<script>
  var animation = lottie.loadAnimation({
    container: document.getElementById('lottie-animation'), // Le conteneur HTML
    renderer: 'svg', // Rendu au format SVG
    loop: true, // L’animation boucle en continu
    autoplay: true, // L’animation démarre automatiquement
    path: 'https://lottie.host/4cd4722c-4ef5-420b-9498-353eef9a35d1/0VLW6C9OUi.json' // Chemin vers le fichier JSON
  });
</script>