forked from gabay/gabay.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
particles.html
91 lines (78 loc) · 3.91 KB
/
particles.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!doctype html>
<html dir="rtl" lang="he">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="/static/image/favicon.ico">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="/static/main.css">
<link rel="stylesheet" href="/static/particles.css">
<title>Canvas</title>
</head>
<body>
<h1>חלקיקים על קנבס</h1>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<ul class="navbar-nav mr-auto">
<li class="nav-item"><a class="nav-link" href="/">דף הבית</a></li>
<li class="nav-item"><a class="nav-link" href="text_to_particles.html">טקסט לחלקיקים</a></li>
<li class="nav-item active"><a class="nav-link" href="particles.html">חלקיקים</a></li>
</ul>
</nav>
<div dir="ltr">
<form>
Particle:
<br/>
- Count: <input id="count" type="number" value="10000"/>
<br/>
- Size (px):
<input id="min-size" type="number" value="1"/>
-
<input id="max-size" type="number" value="5"/>
<br/>
- Rotation (degress / second, only for lines): <input id="rotation" type="number" value="360"/>
<br/>
- Normal acceleration (px / second**2): <input id="normal-acceleration" type="number" value="100"/>
<br/>
- Mouse acceleration (px / second**2): <input id="mouse-acceleration" type="number" value="3000"/>
<br/>
- Random acceleration (px / second**2): <input id="random-acceleration" type="number" value="400"/>
<br/>
- Drag (% of speed / second): <input id="drag" type="number" value="0.01"/>
<br/>
<input id="shape-circle" type="button" value="Circle"/>
<input id="shape-line" type="button" value="Line"/>
<br/>
Moving particles:
<br/>
- Count: <input id="moving-particles-count" type="number" value="1000"/>
<br/>
- Start X (% of width): <input id="moving-particles-start-x" type="number" value="0.3"/>
<br/>
- Start Y (% of height): <input id="moving-particles-start-y" type="number" value="0.5"/>
<br/>
- End X (% of width): <input id="moving-particles-end-x" type="number" value="0.5"/>
<br/>
- End Y (% of height): <input id="moving-particles-end-y" type="number" value="0.2"/>
<br/>
Mouse:
<br/>
- Radius change by move (px / event): <input id="mouse-radius-change-by-move" type="number" value="70"/>
<br/>
- Radius change by click (px / click): <input id="mouse-radius-change-by-click" type="number" value="50"/>
<br/>
- Radius decay (px / second): <input id="mouse-radius-decay" type="number" value="-200"/>
<br/>
- Max radius (px): <input id="mouse-max-radius" type="number" value="30"/>
<br/>
<input id="reset" type="reset" value="Reset"/>
</form>
</div>
<canvas id="scene"></canvas>
<script src="/static/particles.js"></script>
<!-- Bootstrap JavaScript -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>