forked from kenwheeler/handsome.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (49 loc) · 1.9 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
<html>
<head>
<title>handsome.js</title>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="js/handsome.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<link rel="stylesheet" type="text/css" href="css/handsome.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="content">
<h1 class="title">HANDSOME</h1>
<h3>The UI Toolkit For Sexy Individuals</h3>
<hr/>
<h1>CHECKBOX</h1>
<h3>Custom Checkbox Styling</h3>
<input type="checkbox" class="checkbox" checked />
<h2>Code</h2>
<code>$('.checkbox').checkBox();</code>
<hr/>
<h1>RADIO</h1>
<h3>Custom Radio Button Styling</h3>
<input type="radio" name="radio" class="radio" value="1" checked/>
<input type="radio" name="radio" class="radio" value="2" />
<input type="radio" name="radio" class="radio" value="3" />
<h2>Code</h2>
<code>$('.radio').radio();</code>
<hr/>
<h1>DROPDOWN</h1>
<h3>Custom Select Dropdown</h3>
<select class="select" name="select" tabindex="1">
<option value="1">Click me and see</option>
<option value="2">All the cool stuff</option>
<option value="3">That I can do</option>
<option value="4">I need a long phrase</option>
<option value="5">In order to illustrate</option>
<option value="6">How this element handles</option>
<option value="7">Different text lengths</option>
<option value="8">And long options lists</option>
<option value="9">Because we are grown ups.</option>
</select>
<h2>Code</h2>
<code>$('.select').dropDown({useNativeMobile: true});</code>
<hr/>
<a class="button" href="https://github.com/kdubbicles/handsome.js">Open In Github</a> <a class="button" href="https://github.com/kdubbicles/handsome.js/archive/master.zip">Download Zipped (29k)</a>
</div>
</body>
</html>