微信小程序中修改checkbox的樣式

效果圖 web

效果圖

1,wxml 代碼

<checkbox-group>
    <label>
        <checkbox></checkbox>   
    </label>
</checkbox-group>
複製代碼

2,wxss 代碼

checkbox .wx-checkbox-input {
	width: 34rpx;
	height: 34rpx;
	border-radius: 50%;
}
/*checkbox選中後樣式  */
checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  background: #0394F0;
  border-color:#0394F0;
}
/*checkbox選中後圖標樣式  */
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  width: 20rpx;
  height: 20rpx;  
  line-height: 20rpx;
  text-align: center;
  font-size: 22rpx;
  color: #fff;
  background: transparent;
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
}
複製代碼
相關文章
相關標籤/搜索