-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (35 loc) · 1.22 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
<!DOCTYPE html>
<html lang=en-US>
<head>
<title>TouchScript</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" type="text/css" href="main.css">
<script type="module" src="ui.mjs"></script>
<!-- <script type="module" src="main.mjs"></script> -->
</head>
<body>
<div id="runtime">
<p id="console-output"></p>
<!-- <input id="console-input"> -->
</div>
<div id="editor">
<div id="menu"><button class="indentation"></button><button class="insert-line menu-item"></button><button
class="delete menu-item"></button></div>
<div id="drag-menu-container">
<button id="play-button">></button>
<div id="play-button-anchor"></div>
<div id="drag-menu">
<div id="drag-menu-actions">
<button id="new-project">New <strong>+</strong></button>
<button id="view-code">.wasm <strong>< ></strong></button>
<button id="export-project">Export</button>
<input type="file" id="import-project" multiple accept=".proj" class="visually-hidden">
<label for="import-project">Import</label>
<button id="close-action-menu">X</button>
</div>
</div>
</div>
</div>
</body>
</html>