-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (50 loc) · 1.22 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<style>
body,
html,
#app {
height: 100%;
}
#root {
height: 100%;
}
body {
/* margin: 20px; // 不生效 */
/* padding: 20px; */
}
</style>
<!-- <script type="module">
import {getCLS, getFID,getFCP,getTTFB, getLCP} from 'https://unpkg.com/web-vitals?module';
getCLS(console.log);
getFID(console.log);
getLCP(console.log);
getFCP(console.log);
getTTFB(console.log);
</script> -->
</head>
<body>
<div id="container"></div>
<div id="antd"></div>
<!-- <div id="root"></div> -->
<div id="app"></div>
<!-- <script src="https://blog-static.cnblogs.com/files/ast935478677/mouse-click.js"></script> -->
<script src="./src/others/mouse-click.js"></script>
<canvas
width="1777"
height="841"
style="
position: fixed;
left: 0px;
top: 0px;
z-index: 999;
pointer-events: none;
"
></canvas>
</body>
</html>