小程序 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