小程序 checkbox 样式自定义,圆形,对钩变圆点


<checkbox class="custom-checkbox"></checkbox>
.custom-checkbox .wx-checkbox-input{
  border-radius: 50%;
  border: 2rpx solid #FC703E;
}
.custom-checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  background: #FC703E;
}
.custom-checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  display: none;
}
.custom-checkbox .wx-checkbox-input.wx-checkbox-input-checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26rpx;
  height: 26rpx;
  border: 6rpx solid #fff;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM