-
Notifications
You must be signed in to change notification settings - Fork 14
/
example.html
39 lines (37 loc) · 1.37 KB
/
example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.1" charset="UTF-8"?>
<!DOCTYPE html>
<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script src="http://js.azatoth.net/libs/jquery/1.4.2/jquery.js"></script>
<script src="http://js.azatoth.net/libs/jquery-ui/1.8rc3/ui/jquery-ui.js"></script>
<script src="jquery.video.js"></script>
<link rel="stylesheet" href="http://js.azatoth.net/libs/jquery-ui/1.8rc3/themes/base/jquery-ui.css" />
<link rel="stylesheet" href="jquery.video.css" />
<title>jQuery UI Video test</title>
<style>
#foo {
width: 854px;
height: 480px;
}
</style>
<script type="text/javascript"
src="http://jqueryui.com/themeroller/themeswitchertool/">
</script>
<script>
$(function(){
$('#switcher').themeswitcher();
$('video').video();
});
</script>
</head>
<body>
<video width="854px" height="480px" poster="http://stream.azatoth.net/big_buck_bunny.png">
<source src="http://stream.azatoth.net/big_buck_bunny_480p_h264.mov" type="video/h264"/>
<source src="http://stream.azatoth.net/big_buck_bunny_480p_stereo.ogg" type="video/ogg"/>
<source src="http://stream.azatoth.net/big_buck_bunny_480p_surround-fix.avi" type="video/mp4"/>
</video>
<div>© copyright Blender Foundation | www.bigbuckbunny.org</div>
<div id="switcher"></div>
</body>
</html>