-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
38 lines (34 loc) · 842 Bytes
/
demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>fire</title>
<style>
h1 {
font-size: 24px;
text-align: center;
color: red;
}
.hid {
position: absolute;
left: -9999px;
top: -9999px;
}
#fire {
display: block;
margin: 0 auto;
}
</style>
</head>
<body>
<h1>🔥火焰🔥</h1>
<canvas id="fire" width="1024" height="400"></canvas>
<canvas id="noise" width="1024" height="2048" class="hid"></canvas>
<script type="module" src="./src/fire.js"></script>
</body>
</html>