forked from loqwai/paper-cranes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.html
27 lines (24 loc) · 915 Bytes
/
edit.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
<!doctype html>
<html lang="en">
<head>
<!-- <link rel="stylesheet" href="index.css" /> -->
<link rel="stylesheet" href="edit.css" />
<title>Paper Cranes - Editor</title>
</head>
<body class="ready">
<div class="sparkly animated" id="feature-editor"></div>
<canvas id="visualizer" width="1920" height="1920"></canvas>
<div id="save-and-publish" class="sparkly animated">
<button id="save">Save</button>
<button id="publish">
<a href="https://github.com/loqwai/paper-cranes/new/main/shaders" target="_blank">Publish</a>
</button>
<button id="reset">Reset</button>
</div>
<div id="monaco-editor"></div>
<script type="module" src="./src/monaco.js"></script>
<script type="module" src="./index.js"></script>
<script type="module" src="./edit.js"></script>
<script type="module" src="./src/midi.js"></script>
</body>
</html>