-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (54 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Danmu</title>
<style>
* {
margin: 0;
padding: 0;
}
html,
body,
video,
danmu {
width: 100%;
height: 100%
}
#danmuarea {
width: 100%;
height: 100%;
position: fixed;
pointer-events: none;
}
</style>
<script>
if (typeof module === 'object') {
window.module = module;
module = undefined;
}
</script>
<script src="src/js/jquery-2.1.4.min.js"></script>
<script src="src/js/jquery.danmu.js"></script>
<script>
if (window.module) module = window.module;
</script>
</head>
<body class="center">
<!-- jquery.danmu.js (//github.com/chiruom/danmu/) - Licensed under the MIT license -->
<div id="danmuarea">
<div id="danmu">
</div>
<video id="player"></video>
</div>
<div
style="position:fixed; width:100%; height:26px; right:20px; text-align:right; bottom:40px; color: white; text-shadow: rgb(0, 0, 0) 0px 0px 2px; opacity: 0.75; white-space: nowrap; font-weight: bold; font-family: SimHei; font-size: 24px;">
<marquee width="100">
Powered By JI Tech.
</marquee>
</div>
<script src="src/js/MediaController.js"></script>
<script src="src/js/index.js"></script>
</body>
</html>