-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (38 loc) · 1.44 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
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>幾何空間 by 木白</title>
<meta name="description" content="Motion Graphics made with JavaScript.">
<meta property="og:title" content="幾何空間 by 木白">
<meta property="og:description" content="Motion Graphics made with JavaScript.">
<meta property="og:image" content="https://s24egao.github.io/motion/image.png">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:image" content="https://s24egao.github.io/motion/image.png">
<link rel="icon" type="image" href="icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@900&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.1/p5.js" type="text/javascript"></script>
</head>
<body>
<style type="text/css">
html {
width: 100%;
height: 100%;
overflow: hidden;
background: black;
-webkit-user-select: none;
}
body {
margin: 0px;
width: 100%;
height: 100%;
}
</style>
<div id="bg" style="position: fixed; width: 100%; height: 100%;"></div>
<img src="icon.png" style="position: fixed; right: 20px; bottom: -10px;">
<script src="background.js" type="text/javascript"></script>
</body>
</html>