@piworks/angular-bootstrap-toggle-switch
Version:
Toggle Switches for AngularJS (and optionally Bootstrap). Based off [Bootstrap switch](http://www.larentis.eu/switch/) by Matt Lartentis and forked from [cgarvis](https://github.com/cgarvis/angular-toggle-switch).
55 lines (46 loc) • 2.88 kB
HTML
<html ng-app="app">
<head>
<title>Bootstrap 3 Style Example</title>
<link href="../style/bootstrap3/angular-toggle-switch-bootstrap-3.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.3.15/angular.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.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 ng-init="switchStatus = true">
<h2>
Bootstrap 3 Style Example
</h2>
<div ng-if="true">
<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>
</div>
<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-large switch-primary" ng-model="switchStatus" knob-label="" on-label="" off-label=""></div>
<div toggle-switch class="switch-primary" ng-model="switchStatus" knob-label="" on-label="" off-label=""></div>
<div toggle-switch class="switch-small switch-primary" ng-model="switchStatus" knob-label="" on-label="" off-label=""></div>
<div toggle-switch class="switch-mini switch-primary" ng-model="switchStatus" knob-label="" on-label="" off-label=""></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>