forked from flowplayer/flowplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (23 loc) · 843 Bytes
/
index.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
<!doctype html>
<head>
<!-- player skin -->
<link rel="stylesheet" href="skin/skin.css">
<!-- site specific styling -->
<style>
body { font: 12px "Myriad Pro", "Lucida Grande", sans-serif; text-align: center; padding-top: 5%; }
.flowplayer { width: 80%; }
</style>
<!-- for video tag based installs flowplayer depends on jQuery 1.7.2+ -->
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<!-- include flowplayer -->
<script src="flowplayer.min.js"></script>
</head>
<body>
<!-- the player -->
<div class="flowplayer" data-swf="flowplayer.swf" data-ratio="0.4167">
<video>
<source type="video/webm" src="https://edge.flowplayer.org/bauhaus.webm">
<source type="video/mp4" src="https://edge.flowplayer.org/bauhaus.mp4">
</video>
</div>
</body>