-
Notifications
You must be signed in to change notification settings - Fork 67
/
index.html
107 lines (84 loc) · 2.88 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="Scaleable color picker.">
<meta name="author" content="Juho Vepsäläinen">
<title>colorjoe by bebraw</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/pygment_trac.css">
<link rel="stylesheet" href="css/iehacks.css">
<link rel="stylesheet" href="css/colorjoe.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<div class="wrapper">
<header>
<img class="logo" src="media/logo.png" width="50px">
<h1>colorjoe</h1>
<p>Scaleable color picker (MIT).</p>
<p class="view">
<a href="https://github.com/bebraw/colorjoe">View the Project on GitHub
<small>bebraw/colorjoe</small>
</a>
</p>
<ul>
<li>
<a href="https://github.com/bebraw/colorjoe/zipball/master">Download
<strong>ZIP File</strong>
</a>
</li>
<li>
<a href="https://github.com/bebraw/colorjoe/tarball/master">Download
<strong>TAR Ball</strong>
</a>
</li>
<li>
<a href="https://github.com/bebraw/colorjoe">View On
<strong>GitHub</strong>
</a>
</li>
</ul>
</header>
<section>
<p>Unlike many other colorpickers out there, colorjoe is truly scaleable. It is based on CSS and does not depend on external
images. As a result, you can tweak its size to fit your purposes. Supports touch and AMD module definition as well.</p>
<p>Study the source of this page to get started. You might also check out the
<a href="https://github.com/bebraw/colorjoe/blob/master/README.md">README</a>
for some additional details and API documentation.
</p>
<a href="./rjsdemo">RequireJS demo</a>
</section>
<section>
<h2>RGB Picker</h2>
<div id="rgbValue"></div>
<div id="rgbPicker"></div>
<h2>RGB Picker with Extras</h2>
<div id="extraPicker"></div>
<h2>HSL Picker with Extras</h2>
<div id="hslaValue"></div>
<div id="hslPicker"></div>
<h2>Closeable Picker</h2>
<div class="cj-container">
<a href="#" id="showPicker">Show</a>
<div id="closeablePicker"></div>
</div>
</section>
</div>
<footer>
<p>Project maintained by
<a href="https://github.com/bebraw">bebraw</a>
</p>
<p>Hosted on GitHub Pages — Theme by
<a href="https://github.com/orderedlist">orderedlist</a>
</p>
</footer>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src='js/scale.fix.js'></script>
<script src='dist/colorjoe.js'></script>
<script src='js/demo.js'></script>
</body>
</html>