1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-16 11:37:29 +02:00
video.js/build/release-files/demo.html

24 lines
732 B
HTML
Raw Normal View History

2010-05-18 05:51:17 +03:00
<!DOCTYPE html>
<html>
<head>
2011-10-01 03:28:43 +03:00
<title>VideoJS | HTML5 Video Player</title>
2011-10-01 03:28:43 +03:00
<link href="video-js.css" rel="stylesheet" type="text/css">
2011-10-01 03:28:43 +03:00
<!-- video.js must be in the <head> for older IEs to work. -->
<script src="video.js"></script>
2010-05-18 07:25:32 +03:00
2010-05-18 05:51:17 +03:00
</head>
<body>
2010-06-09 11:24:12 +03:00
2011-10-01 03:28:43 +03: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' />
<source src="http://video-js.zencoder.com/oceans-clip.ogv" type='video/ogg' />
2011-10-01 03:28:43 +03:00
</video>
2010-06-09 11:24:12 +03:00
2010-05-18 05:51:17 +03:00
</body>
</html>