美文网首页
修改小程序checkbox样式

修改小程序checkbox样式

作者: Do_Du | 来源:发表于2019-05-23 17:52 被阅读0次
/*checkbox*/
checkbox .wx-checkbox-input{ /*未选中状态*/
  border-radius: 3rpx;
  height: 32rpx;
  width: 32rpx;
  margin-top: -4rpx;
} 
checkbox .wx-checkbox-input.wx-checkbox-input-checked{
  border-radius: 3rpx;
  height: 32rpx;
  width: 32rpx;
  line-height: 32rpx;
  margin-top: -4rpx;
  border: none;
  background: #0958db;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
   border-radius: 3rpx;/* 圆角 */
   width: 32rpx;/* 选中后对勾大小,不要超过背景的尺寸 */
   height: 32rpx;/* 选中后对勾大小,不要超过背景的尺寸 */
   line-height: 32rpx;
   text-align: center;
   font-size:28rpx; /* 对勾大小 */
   color:#fff; /* 对勾颜色 白色 */
   background: #0958db;
   transform:translate(-50%, -50%) scale(1);
   -webkit-transform:translate(-50%, -50%) scale(1);
}

相关文章

网友评论

      本文标题:修改小程序checkbox样式

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