forked from pissang/paper-quilling-art
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.6 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Paper Quilling Art Generator</title>
</head>
<body>
<link rel="stylesheet" href="./style/controlKit.css">
<link rel="stylesheet" href="./style/main.css">
<div id="loading">
<div class="sk-folding-cube">
<div class="sk-cube1 sk-cube"></div>
<div class="sk-cube2 sk-cube"></div>
<div class="sk-cube4 sk-cube"></div>
<div class="sk-cube3 sk-cube"></div>
</div>
<div id="loading-text">LOADING</div>
</div>
<div id="credits">
<a href="https://github.com/pissang/paper-scrolling-art" target="_blank" class="source">Source Code</a>
Built on top of
<a href="https://github.com/pissang/claygl" target="_blank">ClayGL</a>,
<a href="https://github.com/d3/" target="_blank">D3</a>,
<a href="https://github.com/automat/controlkit.js" target="_blank">ControlKit</a>
</div>
<div id="store-controls">
<button id="undo">Undo</button>
<button id="redo">Redo</button>
<button id="reset">Reset</button>
<button id="download" style="font-size:18px;margin-left:15px;border-width:2px;">Download PNG</button>
<button id="render" style="font-size:18px;margin-left:15px;border-width:2px;">Render</button>
</div>
<div id="main"></div>
<script src="./lib/controlKit.js"></script>
<script src="./lib/FileAPI.js"></script>
<script src="./lib/FileSaver.js"></script>
<script src="./dist/main-bundle.js"></script>
</body>
</html>