Created
May 12, 2014 07:13
-
-
Save carlosrojaso/caecff0ce748d2716b31 to your computer and use it in GitHub Desktop.
video
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
<!DOCTYPE html> | |
<html> | |
<body> | |
<button onclick="playVid()" type="button">Play Video</button> | |
<button onclick="pauseVid()" type="button">Pause Video</button> | |
<br> | |
<video id="video1"> | |
<source src="mov_bbb.mp4" type="video/mp4"> | |
<source src="mov_bbb.ogg" type="video/ogg"> | |
Your browser does not support HTML5 video. | |
</video> | |
<script> | |
var myVideo=document.getElementById("video1"); | |
function playVid() | |
{ | |
myVideo.play(); | |
} | |
function pauseVid() | |
{ | |
myVideo.pause(); | |
} | |
</script> | |
<p>Video courtesy of <a href="http://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p> | |
</body> | |
</html> | |
mammasz
commented
Apr 10, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment