"Beautiful iOS 7 style switches"
Bootstrap 3.3.0 Snippet by mrmccormack

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!-- these would go in <head> -->
<link href="demo.css" rel="stylesheet">
<link href="http://abpetkov.github.io/switchery/dist/switchery.min.css" rel="stylesheet">
<!-- bootstrap -->
<div class="container">
<div class="row">
<h2>Beautiful iOS 7 style switches in Bootstrap</h2> Reference:
<a href="http://abpetkov.github.io/switchery/">http://abpetkov.github.io/switchery/</a>
<p> <a href="http://bootsnipp.com/iframe/vOZkd" target="_blank">full screen</a>
</p>
<hr>
<div class="col-md-4">
<label class="pointer">
<input type="checkbox" value="" class="js-switch" checked> Advanced features.</label>
<br>
<label class="pointer">
<input type="checkbox" value="" class="js-switch" checked> Option 1</label>
<br>
<label class="pointer">
<input type="checkbox" value="" class="js-switch"> Option 2</label>
<br>
<label class="pointer">
<input type="checkbox" value="" disabled class="js-switch"> Option 3 (disabled)</label>
</div>
<div class="col-md-4">
<img src="https://c2.staticflickr.com/4/3273/2666202522_a19f246bab_b.jpg" class="img-responsive" alt="Creative Commons License" title="Creative Commons License"></div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
.pointer {
cursor:pointer;
}
.row{
padding:20px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
$(document).ready(function () {
// Ref: http://abpetkov.github.io/switchery/dist/switchery.min.css" rel="stylesheet
var elems = Array.prototype.slice.call(document.querySelectorAll('.js-switch'));
elems.forEach(function(html) {
var switchery = new Switchery(html);
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: