微信小程序:修改checkbox的默认样式
2023-11-19 本文已影响0人
菜鸟一枚kk
/* 未选中的背景样式 */
checkbox .wx-checkbox-input{
width: 28rpx;
height: 28rpx;
}
/* 选中后的背景样式 */
checkbox .wx-checkbox-input.wx-checkbox-input-checked{
border-color: #297eff;
background-color: #297eff;
}
/* 选中后的勾子样式 */
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
width: 28rpx;
height: 28rpx;
line-height: 28rpx;
border-radius: 50%;
text-align: center;
font-size:26rpx;
color:#FFF;
background: transparent;
transform:translate(-50%, -50%) scale(1);
-webkit-transform:translate(-50%, -50%) scale(1);
}