-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathview.php
64 lines (51 loc) · 2.37 KB
/
view.php
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>what the colour?!</title>
<link type="text/css" href="css/screen.css" rel="stylesheet" />
<link type="text/css" href="css/main.css" rel="stylesheet" />
</head>
<body>
<div class="loading hidden"><img style="width:16px;" src="images/loading.gif" /> Hold up! We're loading!</div>
<h2>what the colour?!</h2>
<div class="container">
<div id="clActions">
<a href="#">top</a> |
<a href="#">new</a> |
<a href="#">random</a> |
<input type="text" id="clUser" value="your COLOURlovers username" size="23" />
<a href="#">mine</a>
</div>
<div id="clPalettes">
</div>
<div style="margin: 20px 0;">
<p style="font-size:12px;">what the colour?! is a cool way to find images matching colour palettes from colourslovers.com.
<br />
- match "all" will return images that contain all the colours in the palette.
<br />
- match "individual" will return images matching each of the colours in the palette.
<br />
- click on the images and fun things will happen.</p>
<p style="font-size:12px;">
go ahead and try it out. if you don't like it, you're money back. guaranteed.
<br />
<small>FYI: what the colour?! doesn't work because the API is no longer available.</small>
</p>
<p></p>
<small style="font-size: 11px;">powered lovingly by <a href="http://ideeinc.com/products/piximilar/" target="_blank">Piximilar</a> and <a href="http://colourlovers.com" target="_blank">COLOURlovers</a> and made by <a href="http://digitalize.ca/" target="_blank">mo</a> at <a href="http://hackto.ca" target="_blank">HackTO #1</a>.</small>
</div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-7131263-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>