小程序开发之自定义c3样式
::-webkit-scrollbar {
display:none;
}
::-webkit-scrollbar { width: 0; height: 0; color: transparent; }
/* 未选中的背景样式*/ radio .wx-radio-input { width: 40rpx; height: 40rpx; border-radius: 50%; } /* 选中后的背景样式*/ radio .wx-radio-input.wx-radio-input-checked { background-color: #16cc80; } radio .wx-radio-input.wx-radio-input-checked::before { width: 40rpx; height: 40rpx; border-radius: 50%; text-align: center; line-height: 40rpx; font-size: 30rpx; color: #fff; background-color: transparent; transform: translate(-50%,-50%) scale(1); -webkit-transform: translate(-50%,-50%) scale(1); }
checkbox:
/* 未选中的背景样式*/ checkbox .wx-checkbox-input { width: 40rpx; height: 40rpx; border-radius: 50%; } /* 选中后的背景样式*/ checkbox .wx-checkbox-input.wx-checkbox-input-checked { background-color: #16cc80; } /*选中状态对勾的样式*/ checkbox .wx-checkbox-input.wx-checkbox-input-checked::before { width: 40rpx; height: 40rpx; border-radius: 50%; text-align: center; line-height: 40rpx; font-size: 30rpx; color: #fff; background-color: transparent; transform: translate(-50%,-50%) scale(1); -webkit-transform: translate(-50%,-50%) scale(1); }