-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathparameters.html
More file actions
38 lines (36 loc) · 829 Bytes
/
parameters.html
File metadata and controls
38 lines (36 loc) · 829 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Particle Parameters</title>
<link rel="stylesheet" type="text/css" href="dragdealer.css" />
<style>
.dragdealer {
width: 500px;
margin: 5px;
}
.rounded-cornered .handle {
border-radius: 5px;
}
#click-clear {
cursor: pointer;
margin: 3px;
padding: 3px;
background-color: #DDF;
width: 100px;
position: relative;
border: 1px solid #EEF;
}
</style>
</head>
<body>
<div id='click-clear' onclick="clearCanvas()">Click to clear.</div>
<canvas id="canvas" width="480" height="320"
onclick="clearCanvas()"
style="background-color: black;"></canvas>
<div id="param-container"></div>
<script src="dragdealer.js"></script>
<script src="param.js"></script>
<script src="parameters.js"></script>
</body>
</html>