Created
February 21, 2017 13:58
-
-
Save Farmatique/500a770fee048bdd7c41357b34c411b5 to your computer and use it in GitHub Desktop.
show/hide controls on hover for video element
This file contains hidden or 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
| jQuery("video").hover(function(event) { | |
| if(event.type === "mouseenter") { | |
| jQuery(this).attr("controls", ""); | |
| } else if(event.type === "mouseleave") { | |
| jQuery(this).removeAttr("controls"); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment