app/template/default/Block/ig_animation.twig line 1

Open in your IDE?
  1. <script type="text/javascript">
  2. $(function() {
  3.   $(window).scroll(function() {
  4.     const scroll = $(window).scrollTop();
  5.     const windowHeight = $(window).height();
  6.     $(".p-instagram").each(function() {
  7.       const boxHeight = $(this).offset().top;
  8.       if(scroll + windowHeight > boxHeight) {
  9.         $(this).addClass("is-active");
  10.       }
  11.     });
  12.   });
  13. });
  14. </script>