Skip to content

Instantly share code, notes, and snippets.

@owenroberts
Created November 13, 2015 02:59
Show Gist options
  • Save owenroberts/67534099062506f9df7b to your computer and use it in GitHub Desktop.
Save owenroberts/67534099062506f9df7b to your computer and use it in GitHub Desktop.
HTML5 Video Example HTML
<!doctype html>
<html>
<head>
<title>HTML5 Video Example</title>
<meta charset="utf-8" />
<link href="style.css" type="text/css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<div id="container">
<video id="player" width="560px" src="commlabfall2015.mp4" ></video>
<div id="menu">
<button id="play">Play</button>
<button id="stop">Stop</button>
<button id="seek">Seek to 20s</button>
<button id="jump">Jump ahead 10s</button>
<button id="spin">Spin the Video</button>
</div><br>
<div id="subtitles">Subtitles</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment