-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 849 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
background-color: #000;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
height: 100vh;
padding: 0;
margin: 0;
}
canvas {
background-color: #000;
/* cursor: none; */
margin: 0;
/* border: 1px solid rgba(255, 255, 255, 0.2); */
}
</style>
</head>
<body>
<canvas id="myCanvas" width="1600px" height="1200px"></canvas>
<!-- <input type="range" step="1" min="1" max="10" value="2" /> -->
<script src="./simplex.js"></script>
<script src="./index.js"></script>
</body>
</html>