-
Notifications
You must be signed in to change notification settings - Fork 43
/
index.html
46 lines (41 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>CommunityClouds</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="sketch-contain"></div>
<div class="form-contain" id="form-primary">
<div class="fc-top">
<div class="attribution">
<div id="attrib-title"></div>
<div id="attrib-author">
<span class="by-sep"> by </span>
<span id="author-name"></span>
</div>
</div>
</div>
<div class="fc-lower">
<form method="post" autocomplete="off" class="clouds-form" id="clouds-form-generator"></form>
</div>
</div>
<div class="form-contain" id="form-secondary">
<div class="fc-name fc-bg-color">
<form method="post" autocomplete="off" class="clouds-form" id="clouds-form-options"></form>
Background color: <input class="jscolor {onFineChange:'updateBg(this)'}" value="77B5FE">
<div class="field-information"></div>
</div>
</div>
<a class="download-svg" id="download">Download SVG</a>
<script src="https://cdn.rawgit.com/gliffy/canvas2svg/master/canvas2svg.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.14/p5.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.14/addons/p5.dom.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.14/addons/p5.sound.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jscolor/2.0.4/jscolor.min.js"></script>
<script src="sketch.js" type="text/javascript"></script>
<script src="custom_ui.js" type="text/javascript"></script>
<script src="generators.js" type="text/javascript"></script>
</body>
</html>