forked from tdreyno/iphone-style-checkboxes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery-demo.html
85 lines (80 loc) · 2.76 KB
/
jquery-demo.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>iPhone Style Radios Demo</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
<script src="jquery/iphone-style-checkboxes.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="style.css" type="text/css" media="screen" charset="utf-8" />
<style type="text/css">
body {
padding: 10px; }
th {
text-align: right;
padding: 4px;
padding-right: 15px;
vertical-align: top; }
.css_sized_container .iPhoneCheckContainer {
width: 250px; }
</style>
<script type="text/javascript" charset="utf-8">
$(window).load(function() {
$('.on_off :checkbox').iphoneStyle();
$('.disabled :checkbox').iphoneStyle();
$('.css_sized_container :checkbox').iphoneStyle({ resizeContainer: false, resizeHandle: false });
$('.long_tiny :checkbox').iphoneStyle({ checkedLabel: 'Very Long Text', uncheckedLabel: 'Tiny' });
var onchange_checkbox = ($('.onchange :checkbox')).iphoneStyle({
onChange: function(elem, value) {
$('span#status').html(value.toString());
}
});
setInterval(function() {
onchange_checkbox.prop('checked', !onchange_checkbox.is(':checked')).iphoneStyle("refresh");
return
}, 2500);
});
</script>
</head>
<body>
<table>
<tr class="disabled">
<th><label for="disabled">Disabled</label></th>
<td>
<input type="checkbox" id="disabled" disabled="disabled" />
</td>
</tr>
<tr class="on_off">
<th><label for="on_off">Default</label></th>
<td>
<input type="checkbox" id="on_off" />
</td>
</tr>
<tr class="on_off">
<th><label for="on_off_on">Default On</label></th>
<td>
<input type="checkbox" checked="checked" id="on_off_on"/>
</td>
</tr>
<tr class="css_sized_container">
<th><label for="css_sized_container">CSS Sized Container and Handle</label></th>
<td>
<input type="checkbox" id="css_sized_container" />
</td>
</tr>
<tr class="long_tiny">
<th><label class="left" for="long_tiny">Long and short labels</label></th>
<td>
<input type="checkbox" id="long_tiny" />
</td>
</tr>
<tr class="onchange">
<th>Event tracking</th>
<td>
<input type="checkbox" id="onchange" />
<p>Checkbox status is <strong><span id="status">...</span></strong>.</p>
</td>
</tr>
</table>
</body>
</html>