Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1413655

    Hi,
    I’ve added lottie animated icons on my page, and set them up so they only play on hover…
    Unfortunately, they seem to play automatically on viewport, whatever I do…
    What did I miss ?
    Thanks in advance for your help!

    Enfold Lottie

    • This topic was modified 1 year, 3 months ago by maxgorelkine.
    #1414057

    Hey maxgorelkine,
    Thank you for your patience, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function lottie_play_on_hover_only() { ?>
      <script>
    (function($){
    $('.av-lottie-animation-container.play-on-hover').each(function() {
    $(this).removeClass("av-animated-when-almost-visible");
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'lottie_play_on_hover_only');

    Then clear your browser cache and check.

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.