-
Notifications
You must be signed in to change notification settings - Fork 2
/
demo.html
29 lines (26 loc) · 1.23 KB
/
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Simple Switch</title>
<meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta content="telephone=no" name="format-detection">
<meta content="email=no" name="format-detection">
<link href="simple-switch.css" rel="stylesheet" />
<style>
</style>
</head>
<body>
<div style="text-align:center;padding-top:10px;"><input type="checkbox" class="mybox" ></div>
<div style="text-align:center;padding-top:10px;"><input type="checkbox" class="mybox" checked></div>
<div style="text-align:center;padding-top:10px;"><input type="checkbox" class="mybox" ></div>
<div style="text-align:center;padding-top:10px;"><input type="checkbox" class="mybox" checked></div>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="jquery.simpleswitch.js"></script>
<script>
$(".mybox").simpleSwitch();
</script>
</body>
</html>