前端插件之Bootstrap Switch 選擇框開關控制
阿新 • • 發佈:2018-04-11
顏色 idt 導入 AR test inf disabled str only
簡介
Bootstrap Switch是一款輕量級插件,可以給選擇框設置類似於開關的樣式
它是依賴於Bootstrap的一款插件
下載
下載地址
在線引用
導入
因為它是依賴於Bootstrap的一款插件,所以,在引入之前要先引入Bootstrap樣式
<link rel="stylesheet" type="text/css" href="/static/plugin/bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="/static/plugin/switch/bootstrap-switch.min.css"> <script src="/static/plugin/bootstrap/js/bootstrap.min.js"></script> <script src="/static/plugin/switch/bootstrap-switch.min.js"></script>
使用
# 定義一個選擇框 <input type="checkbox" name="test"> # 給選擇框應用樣式 <script type="text/javascript"> $("[name=‘test‘]").bootstrapSwitch(); </script>
屬性
除了默認的樣式,還可以通過給input框設置屬性的方式給它自定義一些樣式
按鈕大小
data-size="..."
-
Mini 迷你
-
Small 小號
-
Normal 正常
-
Large 大號
按鈕顏色
data-on-color="..."
data-off-color="..."
- primary 深藍
- info 淺藍
- success 綠色
- warning 黃色
- danger 紅色
按鈕文字
data-on-text="..."(str類型)
data-off-text="..."
按鈕寬度
data-handle-width=".."(int類型)
label寬度
data-label-width="..."(int類型)
只可讀
readonly=""
禁用
disabled=""
更多
前端插件之Bootstrap Switch 選擇框開關控制