Skip to content

Instantly share code, notes, and snippets.

@hzlzh
Last active August 29, 2015 14:04
Show Gist options
  • Save hzlzh/c8c293c434508828e1fc to your computer and use it in GitHub Desktop.
Save hzlzh/c8c293c434508828e1fc to your computer and use it in GitHub Desktop.
html5 video demo
<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