Created
February 16, 2018 21:30
-
-
Save grand-lotus-iroh/57ff9588355301ce1c35cc5c0479b754 to your computer and use it in GitHub Desktop.
Autoplay HTML5 Video with Modal and Keyboard Support
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
<script type="text/javascript"> | |
$('#modal-sample').on('shown.bs.modal', function() { | |
$('#video1')[0].play(); | |
}) | |
$('#modal-sample').on('hidden.bs.modal', function() { | |
$('#video1')[0].pause(); | |
}) | |
$(window).keypress(function(e) { | |
var video = document.getElementById("video1"); | |
if (e.which == 32) { | |
if (video.paused == true) video.play(); | |
else video.pause(); | |
} | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://gist.github.com/grand-lotus-iroh/087f9913f8eaa4e1b695b8631c5d918c