-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
71 lines (67 loc) · 3.53 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
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
<script src="http://code.createjs.com/createjs-2013.02.12.min.js"></script>
<script src="http://social-cloud.cloudapp.net/socket.io/socket.io.js"></script>
<link href='http://fonts.googleapis.com/css?family=Kavoon|Aclonica|Permanent+Marker' rel='stylesheet' type='text/css' />
<link href='css/style.css' rel='stylesheet' type='text/css' />
<link href='css/jquery.minicolors.css' rel='stylesheet' type='text/css' />
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</head>
<body style="padding:0;margin:0;text-align: left; background-color:#000;color:#fff;">
<div id="handler" style="cursor:pointer;position:absolute; z-index:2000;width:10px;height:10px;left:0px;top:0px;display:block;color:#666;">+</div>
<div id="options" style="position:absolute; z-index:1000;width:500px;height:800px;left:0px;top:0px;display:none;">
<br/>
<div>
Background color: <input id="bgColor" type="text" class="input-small minicolors" value=""/>
</div>
<div>
Tweet color: <input id="tweetColor" type="text" class="input-small minicolors" value=""/>
</div>
<div>
Fade Color: <input id="fadeColor" type="text" class="input-small minicolors" value=""/>
</div>
<div>
Word Colors: <input id="wordColors" value="#C4D6CE,#F9E4CA,#E89B9A,#917471,#E83402,#9396A0,#FFFBED,#CDC489" />
</div>
<div>
Speed (0.1 = fast, 1.0 = slower): <input id="speedFactor" value="0.5" />
Words Per Min: <input id="rateWordsPerMin" value="60" />
Tweets Per Min: <input id="rateTweetsPerMin" value="30" />
Images Per Min: <input id="rateImagesPerMin" value="20" />
</div>
<div>
Word Size: <input id="wordSize" value="30" />
Word Size Max: <input id="wordSizeMax" value="30" />
Tweet Size: <input id="tweetSize" value="20" />
Tweet Size Max: <input id="tweetSizeMax" value="20" />
Image Size: <input id="imageSize" value="30" />
Image Size Max: <input id="imageSizeMax" value="30" />
</div>
<div>
Promoted cycles : <input id="promoted" value="3" />
Shadow: <input type="checkbox" id="shadow"/>
</div>
<textarea id="output" rows="40" cols="50"></textarea>
<input type="button" value="reset" id="reset" />
<input type="button" value="Update" id="cloud-update" />
</div>
<div id="screen">
<canvas id="canvas" width="1920" height="1200"></canvas>
</div>
<div id="popup" style="display:none;"></div>
<div id="popup-background" style="display:none;"></div>
<script src="scripts/jquery.minicolors.js"></script>
<script src="scripts/helper.js"></script>
<script src="scripts/wordcloud/wordcloud.js"></script>
<script src="scripts/picwall/picwall.js"></script>
<script src="scripts/obb.js"></script>
<script src="scripts/dal.js"></script>
<script src="scripts/index.js"></script>
<script>
</script>
</body>
</html>