-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtextParticles.html
37 lines (37 loc) · 976 Bytes
/
textParticles.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
<!doctype html>
<html>
<head>
<title>text particles</title>
<meta charset='utf-8' />
<style>
body {
position: relative;
padding: 0;
margin: 0;
}
canvas {
position: absolute;
top: 0;
left: 0;
border: 1px solid red;
}
.toolbar {
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
<canvas id='textParticle'></canvas>
<div class='toolbar'>
<div class='group'>
<label>text:</label>
<input id='text' type='text' />
</div>
</div>
<script src='./dist/js/vector2.js'></script>
<script src='./dist/js/particle.js'></script>
<script src='./dist/js/textParticles.js'></script>
</body>
</html>