一、checkbox样式修改
默认勾选与未勾选样式
wxml
<checkbox color="#fff" value="{{id}}" checked="{{checked}}"></checkbox>
设置wxss文件
更改大小、勾选背景颜色等:
// 未勾选样式
.wx-checkbox-input {
width: 33rpx !important;
height: 33rpx !important;
}
//环形的外圈
radio .wx-radio-input.wx-radio-input-checked {
border: 2rpx solid #00bcd4 !important;
}
//选中后背景及勾的样式
radio .wx-radio-input.wx-radio-input-checked::before {
border-radius: 50%;
width: 20rpx;
height: 20rpx;
line-height: 20rpx;
text-align: center;
font-size: 0;
background: #00bcd4;
transform: translate(-50%, -50%) scale(1);
}
修改radio的样式为环形
// 未勾选样式
.wx-checkbox-input {
width: 33rpx !important;
height: 33rpx !important;
}
// 勾选样式
.wx-checkbox-input.wx-checkbox-input-checked{
border-color:#00BCD4 !important;
background:#00BCD4 !important;
}
二、radio样式修改
wxml中的color要给一个值文章来源:https://www.toymoban.com/news/detail-503698.html
<radio value="0" bindtap="radioChange" checked="{{check}}" color="#fff"></radio>
设置wxss文件文章来源地址https://www.toymoban.com/news/detail-503698.html
// 未勾选样式
.wx-radio-input {
width: 32rpx !important;
height: 32rpx !important;
border-radius: 100%;
background-color: #fff !important;
}
// 勾选样式
.wx-radio-input.wx-radio-input-checked {
width: 32rpx !important;
height: 32rpx !important;
background-color: #00bcd4 !important;
}
到了这里,关于【微信小程序】checkbox,radio的样式修改的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!