Skip to content

Instantly share code, notes, and snippets.

@guilhermemarconi
Created October 7, 2014 20:42
Show Gist options
  • Save guilhermemarconi/3650c4ec8c30a070951c to your computer and use it in GitHub Desktop.
Save guilhermemarconi/3650c4ec8c30a070951c to your computer and use it in GitHub Desktop.
Play video on hover. Pause on mouse out.
<video preload="auto" loop>
<source src="video-file.mp4" type="video/mp4" />
<source src="video-file.webm" type="video/webm" />
</video>
(function($) {
$(function() {
$('video').hover(function() {
this.play();
}, function() {
this.pause()
});
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment