forked from cgarvis/angular-toggle-switch
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathbootstrap-2.html
48 lines (40 loc) · 2.26 KB
/
bootstrap-2.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
<!DOCTYPE html>
<html ng-app="app">
<head>
<title>Bootstrap 2 Style Example</title>
<link href="../style/bootstrap2/angular-toggle-switch-bootstrap-2.css" media="all" rel="stylesheet" type="text/css">
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" media="all" rel="stylesheet" type="text/css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular-sanitize.js"></script>
<script type="text/javascript" src="../angular-toggle-switch.js"></script>
<script type="text/javascript">
angular.module('app', ['ngSanitize', 'toggle-switch']);
</script>
</head>
<body>
<h2>
Bootstrap 2 Style Example
</h2>
<p>
<div toggle-switch class="switch-primary" ng-model="switchStatus"></div>
<div toggle-switch class="switch-info" ng-model="switchStatus"></div>
<div toggle-switch class="switch-success" ng-model="switchStatus"></div>
<div toggle-switch class="switch-warning" ng-model="switchStatus"></div>
<div toggle-switch class="switch-danger" ng-model="switchStatus"></div>
<div toggle-switch class="switch-default" ng-model="switchStatus"></div>
</p>
<p>
<div toggle-switch class="switch-large switch-primary" ng-model="switchStatus"></div>
<div toggle-switch class="switch-primary" ng-model="switchStatus"></div>
<div toggle-switch class="switch-small switch-primary" ng-model="switchStatus"></div>
<div toggle-switch class="switch-mini switch-primary" ng-model="switchStatus"></div>
</p>
<p>
<div toggle-switch class="switch-primary" data-is-disabled="disabled" ng-model="switchStatus"></div>
</p>
<p ng-init="htmlSwitchStatus = true">
<div toggle-switch class="switch-primary switch-large" html="true" knob-label="HTML" on-label='<i class="fa fa-thumbs-up"></i>' off-label='<i class="fa fa-thumbs-down"></i>' ng-model="htmlSwitchStatus"></div>
<div toggle-switch class="switch-primary switch-large" html="htmlSwitchStatus" knob-label='<i class="fa fa-question"></i>' on-label='<i class="fa fa-thumbs-up"></i>' off-label='<i class="fa fa-thumbs-down"></i>' ng-model="switchStatus"></div>
</p>
</body>
</html>