-
Notifications
You must be signed in to change notification settings - Fork 4
/
index3.html
65 lines (59 loc) · 2.89 KB
/
index3.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
<!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://confoo-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' />
</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;">+</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>
Font 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>
Speed (0.1 = fast, 1.0 = slow): <input id="speedFactor" value="0.5" />
</div>
<div>
Goto Effect: <input type="checkbox" id="effGoto"/>
</div>
<div>
Rotations: Word <input type="checkbox" id="wordRotation"/>
Image: <input type="checkbox" id="imageRotation"/>
Tweet: <input type="checkbox" id="tweetRotation"/>
</div>
<div>
Shadow: <input type="checkbox" id="shadow"/>
</div>
<div>
ZoomOutFrequency (zoom out after # of insert; -1 to turn off): <input type="text" value="5" id="zoomout" />
</div>
<input type="button" value="reset" id="reset" />
<input type="button" value="Update" id="cloud-update" />
</div>
<div id="screen">
<canvas id="canvas" width="1600" height="1200"></canvas>
</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/index3.js"></script>
<script>
</script>
</body>
</html>