-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·59 lines (52 loc) · 2.03 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
<!doctype html>
<html lang="en">
<head>
<title>Proof of concept - Javascript based 360 colour changer</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/black-tie/jquery-ui.css" type="text/css" media="all" />
<link rel='stylesheet' href="css/style.css" type="text/css" media="all" />
<!--<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8rc3.custom.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>-->
<script type="text/javascript" src="js/lib/mootools.js" ></script>
<script type="text/javascript" src="js/lib/mootools.more.js" ></script>
<script type="text/javascript" src="js/base.js" ></script>
<script type="text/javascript" src="js/stackedThreeSixty.js" ></script>
</head>
<body>
<h1>Proof of concept - Javascript based 360 colour changer</h1>
<div id="wrapper">
<!--<div id="color"></div>
<div id="mask"></div>
<div id="base"></div>
<div id="reflection"></div>
<div id="controls"></div>
-->
<div id="threesixty">
<div id="color"></div>
<div id="mask"></div>
<div id="base"></div>
<div id="reflection"></div>
</div>
<div id="colourControls">
<form>
<input type="button" value="red" id="redBtn"/>
<input type="button" value="green" id="greenBtn"/>
<input type="button" value="blue" id="blueBtn"/>
<input type="button" value="yellow" id="yellowBtn"/>
<input type="button" value="white" id="whiteBtn"/>
<input type="button" value="purple" id="purpleBtn"/>
<input type="button" value="black" id="blackBtn"/>
<!-- <div id = "redBtn"></div>
<div id = "blueBtn"></div>
<div id = "yellowBtn"></div>
<div id = "blackBtn"></div>
<div id = "whiteBtn"></div>
<div id = "silverBtn"></div>
-->
</form>
</div>
</div>
<div id="imageLoader"></div>
</body>
</html>