forked from ehsansherkat/IDC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo.html
44 lines (35 loc) · 1.43 KB
/
video.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
40
41
42
43
44
<!-- Ehsan Sherkat - Project -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>User Guide</title>
<link rel="stylesheet" href="css/jquery-ui.css"> <!-- should be the first -->
<script src="js/jquery-1.10.2.js"></script>
<script src="js/jquery-ui.js"></script>
<!-- video -->
<link rel="stylesheet" href="css/video-js.css">
<script src="js/video.js"></script>
<!-- bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/bootstrap.min.js"></script>
<link href="css/main.css" type="text/css" rel="stylesheet" />
<script>
videojs.options.flash.swf = "video-js.swf"
</script>
</head>
<body>
<h1 style="text-align:center">Help Video</h1>
<div id="video">
<video id="help_video_1" class="video-js vjs-default-skin"
controls preload="auto" width="100%" height="100%"
poster="video/video.jpg"
data-setup='{"example_option":true}'>
<source src="video/help.mp4" type='video/mp4' />
</video>
</div>
<div style="position: absolute;width:100%;top:90%;">
<p id="copy_right" style="text-align:center;color: #888888;">© 2017 Ehsan Sherkat. (last update: July 11, 2017)</p>
</div>
</body>
</html>