-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (31 loc) · 989 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
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>创作者中心</title>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<img src="./images/BG1.png" width="100%" height="100%" style="z-index:-100;position:absolute;left:0;top:0">
<a href="login.html"><img src="images/usr.png" id="person" width="100px" height="100px"
style="z-index:-50;position:absolute;right:0;top:0">
</a>
<input id="fileInp" type="file" hidden>
<div class="world">
<p><strong>点击</strong></p>
<div id="cube" tabindex="0">
<div id="cube__front"></div>
<div id="cube__back"></div>
<div id="cube__left"></div>
<div id="cube__right"></div>
<div id="cube__top"></div>
<div id="cube__bottom"></div>
</div>
</div>
<p class="text"><strong>上传你的文件</strong></p>
</body>
<script type="module" src="./bundle.esm.min.js" type="text/javascript">
</script>
<script type="module" src="./index.js" type="text/javascript">
</script>
</html>