1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<div class="row"> <div class="col-sm-4"> <input type="checkbox" name="switch1" class="switch1 bootstrap-switch-large" checked> </div> </div> <script> $(document).ready(function(){ $("input.switch1").bootstrapSwitch({ onText: 'normal', offText: 'abnormal', size: 'large' }); }); </script> <style> .bootstrap-switch-large{ width: 200px; } </style> |
