-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>2020 東京奧運超級變變變 - Pictogram</title>
<meta property="twitter:card" content="player" />
<meta
property="twitter:player"
content="https://user-images.githubusercontent.com/6581081/127806534-e112b84d-9980-45e0-bfda-8d5e2e67197a.mp4"
/>
<meta
property="og:image"
content="https://user-images.githubusercontent.com/6581081/127807817-8d3971c4-85ea-49d8-ab61-a14376e2f288.jpeg"
/>
<meta property="twitter:player:width" content="1920" />
<meta property="twitter:player:height" content="1080" />
<meta property="og:type" content="website" />
<meta
property="og:video"
content="https://user-images.githubusercontent.com/6581081/127806534-e112b84d-9980-45e0-bfda-8d5e2e67197a.mp4"
/>
<meta property="og:video:width" content="1920" />
<meta property="og:video:height" content="1080" />
<meta
property="description"
content="如何用 p5.js 與 ml5.js 重現東奧超級變變變"
/>
<script src="p5.min.js"></script>
<script src="p5.dom.min.js"></script>
<script src="ml5.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
<meta charset="utf-8" />
</head>
<body>
<script src="sketch.js"></script>
</body>
</html>