-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (67 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EasyAvg2</title>
<style>
#root
{
display: flex;
justify-content: center;
}
#bg
{
position: absolute;
z-index: 1;
}
#ch
{
position:absolute;
z-index: 2;
}
#dialog
{
position: absolute;
z-index: 3;
background-color: grey;
width: inherit;
height:100px ;
color: white;
margin-top:400px;
}
</style>
</head>
<body>
<div id="root">
<img id="bg" src="bg/050.jpg" alt="bg">
<img id="ch" src="ch/char.png" alt="ch">
<div id="dialog">
请点击网页,允许播放bgm
</div>
<audio id="bgm" src="bgm/slow_time.ogg" controls></audio>
</div>
<script src="core.js"></script>
<script src="index.js"></script>
<!-- <script>
var a = "a";
async function fetchData() {
return new Promise((resolve, reject) => {
var xhr = new XMLHttpRequest();
xhr.onload = function() {
resolve(xhr.responseText);
};
xhr.onerror = reject;
xhr.open("get", "0.txt");
xhr.send();
});
}
async function processData() {
a = await fetchData();
console.log(a);
}
processData();
</script>
-->
</body>
</html>