-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
100 lines (74 loc) · 1.44 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<html>
<head>
<script src="js/zepto.js" type="text/javascript"> </script>
<script src="js/events.js" type="text/javascript"> </script>
<script src="js/fvideo.js" type="text/javascript"> </script>
<link rel="stylesheet" type="text/css" href="css/jfvideo.css" />
<style type="text/css">
#jfVideo{
height: 360px;
width: 640px;
background-color: transparent;
padding: 15px;
border-radius: 15px;
margin-top:25px;
margin-bottom:25px;
box-shadow: 0px 0px 10px #aaa;
}
h1,h2,h3,h4,h5, p{
font-family:Georgia;
font-weight:normal;
color:#444;
width:640px;
text-align:center;
}
p{
color:#666;
text-align:center;
font-size:18px;
}
#container{
width:920px;
padding:20px;
height:auto;
display: block;
}
.center{
margin:0 auto;
}
.title{
text-align:center;
margin-bottom:15px;
}
.clear{
clear:both;
}
.logo{
text-align:center;
margin-bottom:15px;
}
.logoparent{
width: 200px;
background-color: #222;
border-radius: 20px;
padding: 25px;
box-shadow: 0px 0px 9px #000;
}
body{
}
</style>
</head>
<body>
<script>
setTimeout(function(){
$('#jfVideo').video(
{
src:"http://clips.vorwaerts-gmbh.de/VfE_html5.mp4",
track:"example.srt"
}
);
}, 300)
</script>
<div class="center" id="jfVideo"> </div>
</body>
</html>