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!
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