Created
October 7, 2014 20:42
-
-
Save guilhermemarconi/3650c4ec8c30a070951c to your computer and use it in GitHub Desktop.
Play video on hover. Pause on mouse out.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<video preload="auto" loop> | |
<source src="video-file.mp4" type="video/mp4" /> | |
<source src="video-file.webm" type="video/webm" /> | |
</video> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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