-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
68 lines (59 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bad Apple ft Mr Lim(s)</title>
<style>
img {
width: 32px;
height: 32px;
padding: 0;
margin: 0;
}
#body {
/* width: 960px; */
/* 960 = 30 imgs * 32px*/
padding: 0;
margin: 0;
display: flex;
align-content: flex-start;
flex-wrap: wrap;
}
#play,
#body,
#video {
visibility: hidden;
}
body {
background-color: #888;
}
a {
text-decoration: none;
}
button {
background-color: #fff;
border-radius: 1em;
}
</style>
</head>
<body>
<button id="download" onclick="download()">Download a few MB of data to load it</button>
<button id="play" onclick="play()">Play</button>
<div id="body"></div>
<video id="video">
<source src="./assets/【東方】Bad Apple!! PV【影絵】.mp4" type="video/mp4">
</video>
<br>
<a href="./index.html">Normal version</a>
<br>
<a href="./hd.html">HD version</a>
<br>
<a href="./uhd.html">UHD version</a>
<br>
<a href="./uuhd.html">UUHD version</a>
</body>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="index.js"></script>
</html>