-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
82 lines (69 loc) · 3.45 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
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SpaceMixer alpha - Create your space designs with ease</title>
<link rel="stylesheet" media="screen" type="text/css" href="spectrum/spectrum.css" />
<link rel="stylesheet" media="all" href="spacemixer/ui.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<!--[if IE 6]> <body class="ie6 oldie no-js"> <![endif]-->
<!--[if IE 7]> <body class="ie7 oldie no-js"> <![endif]-->
<!--[if IE 8]> <body class="ie8 oldie no-js"> <![endif]-->
<!--[if gt IE 8]><!-->
<body class="no-js en"> <!--<![endif]-->
<div class="toolbar">
<div class="holder">
<span class="label">Name:</span><input type="text" class="input" value="Living Room" onclick="this.select();">
<span class="label">Color:</span>
<div class="color-input"><input type='color' class='color-box' value='yellowgreen' /></div>
<div id="add-room" class="add button">Add Room</div>
</div>
<div id="add-furniture" class="add button">Add Furniture</div>
<div id="scale">
<span class="label">Scale factor:</span><input type="number" class="scale" value="1.0" onclick="size();">
</div>
<div class="options">
<span class="label">Text:</span>
<input class="checkbox" id="checkbox-1" type="checkbox" name="text" checked="checked"></input>
<label for="checkbox-1"></label>
<span class="label">Size:</span>
<input class="checkbox" id="checkbox-2" type="checkbox" name="area" checked="checked"></input>
<label for="checkbox-2"></label>
</div>
<div id="logo">Space<span id="logo2">Mixer<span><sup>alpha</sup></div>
</div>
<div class="size toggle-table" title="Details">
Total floor size:<span></span>
</div>
<div class="details toggle-table"><ul class="table"><ul></div>
<div class="container"></div>
<div class="mashup">
<div class="box" id="">
<div class="title">Living room</div>
<div class="m2"></div>
<a href="#" class="edit" title="Edit"></a>
<a href="#" class="delete" title="Delete"></a>
<div class="width"></div>
<div class="height"></div>
</div>
</div>
<div class="furniture">
<div class="f-element" id="">
<div class="fbody">
<a href="#" class="delete" title="Delete"></a>
<div class="width"></div>
<div class="height"></div>
</div>
</div>
</div>
<script type="text/javascript" src="script/jquery.js"></script>
<script type="text/javascript" src="script/jquery-ui.js"></script>
<script type="text/javascript" src="script/jquery.ui.resizable.snap.ext.v1.7.min.js"></script>
<script type="text/javascript" src="spectrum/spectrum.js"></script>
<script type="text/javascript" src="spectrum/color-script.js"></script>
<script type="text/javascript" src="spacemixer/spacemixer.js"></script>
</body>
</html>