美文网首页
微信小程序:修改checkbox的默认样式

微信小程序:修改checkbox的默认样式

作者: 菜鸟一枚kk | 来源:发表于2023-11-19 17:45 被阅读0次
/* 未选中的背景样式 */
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);
} 

相关文章

网友评论

      本文标题:微信小程序:修改checkbox的默认样式

      本文链接:https://www.haomeiwen.com/subject/wqsmwdtx.html