1
0
mirror of https://github.com/videojs/video.js.git synced 2025-04-02 22:25:42 +02:00
video.js/build/files/demo.html

23 lines
647 B
HTML
Raw Normal View History

2010-05-17 19:51:17 -07:00
<!DOCTYPE html>
<html>
<head>
2011-09-30 17:28:43 -07:00
<title>VideoJS | HTML5 Video Player</title>
2011-09-30 17:28:43 -07:00
<link href="video-js.css" rel="stylesheet" type="text/css">
2011-09-30 17:28:43 -07:00
<!-- video.js must be in the <head> for older IEs to work. -->
<script src="video.js"></script>
2010-05-17 21:25:32 -07:00
2010-05-17 19:51:17 -07:00
</head>
<body>
2010-06-09 01:24:12 -07:00
2011-09-30 17:28:43 -07:00
<video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" width="640" height="264"
poster="http://video-js.zencoder.com/oceans-clip.png"
data-setup="">
<source src="http://video-js.zencoder.com/oceans-clip.mp4" type='video/mp4' />
<source src="http://video-js.zencoder.com/oceans-clip.webm" type='video/webm' />
2011-09-30 17:28:43 -07:00
</video>
2010-06-09 01:24:12 -07:00
2010-05-17 19:51:17 -07:00
</body>
</html>