-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathindex.html
62 lines (52 loc) · 1.86 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
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="main.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Nonflowers</title>
</head>
<body onload="load()">
<div id="loader">
<div id="spinner">
</div>
<div id="load-text">Generating... </div>
</div>
<div style="display:none;" id="content" class="emerge" >
<div><br></div>
<div id="canvas-container"></div>
<div><br></div>
<table align="center" style="width:600px; ">
<tr><td align="right">
<div id="options" class="option-bar">
<i class="material-icons button" onclick="location.reload()">refresh</i>
<i class="material-icons button" onclick="makeDownload()">file_download</i>
<i class="material-icons button" onclick="toggle('summary','block')">list</i>
<i class="material-icons button" onclick="toggle('settings','table')">settings</i>
<i class="material-icons button" onclick="toggle('share','table')">share</i>
</div>
</td><tr>
<tr><td>
<div id="summary" style="display:none" class="emerge"></div>
</td></tr>
<tr><td align="right">
<div id="settings" style="display:none" class="emerge">
<p>Seed: <input title="random seed" id="inp-seed"/></p>
<p align="center">
<button onclick="reloadWSeed(document.getElementById('inp-seed').value)">
Generate
</button>
</p>
</div>
</td></tr>
<tr><td align="right">
<div id="share" style="display:none" class="emerge">
<a id="share-twitter" target="_blank">
Twitter
</a>
</div>
</td></tr>
</table>
</div>
</body>
</html>