Last active
August 29, 2015 14:04
-
-
Save hzlzh/c8c293c434508828e1fc to your computer and use it in GitHub Desktop.
html5 video demo
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
<video poster="thumb.jpg" id="video" style="cursor: pointer;" > | |
<source src=http://techslides.com/demos/sample-videos/small.webm type=video/webm> | |
<source src=http://techslides.com/demos/sample-videos/small.ogv type=video/ogg> | |
<source src=http://techslides.com/demos/sample-videos/small.mp4 type=video/mp4> | |
<source src=http://techslides.com/demos/sample-videos/small.3gp type=video/3gp> | |
</video> | |
<script type="text/javascript"> | |
var video = document.getElementById('video'); | |
video.addEventListener('click',function(){ | |
video.play(); | |
},false); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment