-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (59 loc) · 1.89 KB
/
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
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
<!doctype html>
<html>
<head>
<title>.synth</title>
<link rel="stylesheet" href="main.css">
<link rel="icon" type="image/png" href="dotsynth_favicon_64.png">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="mobile-web-app-capable" content="yes">
</head>
<body>
<img src="dotsynth_logo_white.png" id="logo">
<!--To be replaced by a .svg image-->
<div id="menu-right">
<!--<img src="images/eraser.svg" id="eraserbutton" />-->
<img src="images/undo.svg" id="undobutton"/>
<img src="images/redo.svg" id="redobutton"/>
<img src="images/help.svg" id="help"/>
</div>
<div id="helptext" class="popup hidden">
<div style="text-decoration: underline">Instructions</div>
<br>
Create Nodes:<br>
<ul>
<li>Hold blank screen space to bring up the new node menu</li>
<li>Tap a node on the menu to place it</li>
</ul>
Manipulate Nodes:<br>
<ul>
<li>Drag nodes across the screen to move them</li>
<li>Tap nodes to bring up their parameters
<ul>
<li>Tap/Drag parameters to change them</li>
</ul>
</li>
</ul>
Link Nodes:<br>
<ul>
<li>Long-press and then drag from one node to another node to create a connection
<ul>
<li>Start at output, drag to input</li>
</ul>
</li>
</ul>
</div>
<div id="workspaceWrapper">
<div id="workspace"></div>
</div>
<script src="js/globals.js" defer></script>
<script src="js/eventhelper.js" defer></script>
<script src="js/nodes.js" defer></script>
<script src="js/newdotmenu.js" defer></script>
<script src="js/connection.js" defer></script>
<script src="js/dot.js" defer></script>
<script src="js/physics.js" defer></script>
<script src="js/workspace.js" defer></script>
<script src="js/style.js" defer></script>
<script src="js/main.js" defer></script>
</body>
</html>