-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (36 loc) 路 939 Bytes
/
Copy pathindex.html
File metadata and controls
44 lines (36 loc) 路 939 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS-BONSAI</title>
<style>
*, html {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
min-width: 100vw;
min-height: 100vh;
background-color: black;
}
.container {
display: grid;
width: 100%;
height: 100vh;
}
.js-bonsai {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="container">
<canvas data-bonsai data-repeat="false" class="js-bonsai" data-base-type="2" data-align="center" data-loop="true"></canvas>
</div>
<!-- <script src="./src/app.js" type="module"></script> -->
<script src="./bonsai.js"></script>
</body>
</html>