Skip to content

Instantly share code, notes, and snippets.

@fillipetech
Last active July 17, 2018 18:11
Show Gist options
  • Select an option

  • Save fillipetech/f0df32c215b45e79b27db5abf38f88e4 to your computer and use it in GitHub Desktop.

Select an option

Save fillipetech/f0df32c215b45e79b27db5abf38f88e4 to your computer and use it in GitHub Desktop.
Reset Video on Visible Viewport area #js #jquery #video
/**
* Reset video on visible area
*/
jQuery(document).ready(function($) {
$(window).scroll(function() {
$('video').each(function(){
if ($(this).is(":in-viewport")) {
$(this)[0].play();
} else {
$(this)[0].currentTime = 0;
}
})
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment