微信小程序 switch组件修改样式(大小,颜色)
程序员文章站
2022-07-13 16:35:50
...
1. 如何修改switch样式大小
/* swtich整体大小 */
.wx-switch-input{
width: 110rpx !important;
height: 57rpx !important;
}
/* false的样式 */
.wx-switch-input::before{
width: 110rpx !important;
height: 53rpx !important;
}
/* true的样式 */
.wx-switch-input::after{
width: 57rpx !important;
height: 53rpx !important;
}
以上尺寸根据你的具体情况来进行调整
2.修改颜色,就是开关打开后的background
<switch checked bindchange="switch1Change" color="#26a2ff" />
通过官方的api设置的属性来修改就行,不需要自己强改样式,通过color
更加详情的官方说明如下
https://developers.weixin.qq.com/miniprogram/dev/component/switch.html
上一篇: H5页面与APP的交互