Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     $(window).scroll(function() {
  2.             $('video').each(function(){
  3.                 if ($(this).is(":in-viewport")) {
  4.                    $(this)[0].play();
  5.                 } else {
  6.                    $(this)[0].pause();
  7.                 }
  8.             })
  9.         });
  10.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement