14

如何将引导开关颜色自定义为所需的颜色?

我找到了一个oncoloroffcolor不知道如何更改它们。

4

1 回答 1

25

根据此页面,每个选项也是一种方法。所以你可以像这样应用 onColor 和 OffColor :

$("#sw").bootstrapSwitch({onColor: 'danger'});

或者像这样:

$("#sw").bootstrapSwitch();
...
$("#sw").bootstrapSwitch('onColor', 'danger');

或覆盖库的默认选项:

$.fn.bootstrapSwitch.defaults.onColor = 'danger';

要使用自己的颜色,您需要创建自己的 CSS 类。例如,此类使用带有您的颜色的“retroorange”名称:

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-retroorange,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-retroorange {
  color: #fff;
  background: #ff9933;
}

然后你可以'retroorange'像往常一样使用:

$("#sw").bootstrapSwitch({onColor: 'retroorange'});
于 2015-04-11T16:21:40.820 回答