用于React的可拖动拨动开关组件。
可使用鼠标或触摸屏拖动。
可自定义-易于自定义大小,颜色等。
访问视觉障碍的用户和那些谁不能使用鼠标。
合理的封装尺寸-<2.5 kB压缩。
可以正常使用-明智的默认样式。 使用内联样式,因此无需导入单独CSS文件。
演示版
安装
npm install react-switch
用法
import React , { Component } from "react" ;
import Switch from "react-switch" ;
class SwitchExample extends Component {
constructor ( ) {
super ( ) ;
this . state = { checked : false } ;
this . handleChange = this . ha
1