(1)基本样式
<div class="switch"> <input class="switch-input" id="exampleSwitch" type="checkbox" name="exampleSwitch"> <label class="switch-paddle" for="exampleSwitch"> <span class="show-for-sr">Download Kittens</span> </label> </div>
(2)禁用
<div class="switch"> <input class="switch-input" disabled checked="checked" id="exampleCheckedDisabledSwitch" type="checkbox" name="exampleCheckedDisabledSwitch"> <label class="switch-paddle" for="exampleCheckedDisabledSwitch"> <span class="show-for-sr">Can't Touch This Checked</span> </label> </div> <div class="switch"> <input class="switch-input" disabled id="exampleUncheckedDisabledSwitch" type="checkbox" name="exampleUncheckedDisabledSwitch"> <label class="switch-paddle" for="exampleUncheckedDisabledSwitch"> <span class="show-for-sr">Can't Touch This Unchecked</span> </label> </div>
(3)radio样式开关
<div class="switch"> <input class="switch-input" id="exampleRadioSwitch1" type="radio" checked name="testGroup"> <label class="switch-paddle" for="exampleRadioSwitch1"> <span class="show-for-sr">Bulbasaur</span> </label> </div>
即三个项目同时只有一个能生效
(4)开关的大小
<div class="switch tiny"> <input class="switch-input" id="tinySwitch" type="checkbox" name="exampleSwitch"> <label class="switch-paddle" for="tinySwitch"> <span class="show-for-sr">Tiny Sandwiches Enabled</span> </label> </div> <div class="switch small"> <input class="switch-input" id="smallSwitch" type="checkbox" name="exampleSwitch"> <label class="switch-paddle" for="smallSwitch"> <span class="show-for-sr">Small Portions Only</span> </label> </div> <div class="switch large"> <input class="switch-input" id="largeSwitch" type="checkbox" name="exampleSwitch"> <label class="switch-paddle" for="largeSwitch"> <span class="show-for-sr">Show Large Elephants</span> </label> </div>
(5)内联标签
<p>Do you like me?</p> <div class="switch large"> <input class="switch-input" id="yes-no" type="checkbox" name="exampleSwitch"> <label class="switch-paddle" for="yes-no"> <span class="show-for-sr">Do you like me?</span> <span class="switch-active" aria-hidden="true">Yes</span> <span class="switch-inactive" aria-hidden="true">No</span> </label> </div>
---------------------
作者:hackpig
来源:www.skcircle.com
版权声明:本文为博主原创文章,转载请附上博文链接!
本文出自勇哥的网站《少有人走的路》wwww.skcircle.com,转载请注明出处!讨论可扫码加群:

本帖最后由 勇哥,很想停止 于 2024-05-20 20:39:42 编辑 
