您的位置:首页 > 移动开发 > 微信开发

微信小程序系列十二:修改checkbox,radio,button默认样式

2018-08-31 17:55 811 查看

checkbox改变大小及颜色:

[code]checkbox .wx-checkbox-input {
width: 28rpx;
height: 28rpx;
}

checkbox .wx-checkbox-input.wx-checkbox-input-checked {
background: #3296fa;
}

checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
width: 28rpx;
height: 28rpx;
line-height: 28rpx;
text-align: center;
font-size: 22rpx;
color: #fff;
background: transparent;
transform: translate(-50%, -50%) scale(1);
-webkit-transform: translate(-50%, -50%) scale(1);
}

radio改变大小:

[code]radio{
position: relative;
margin-top: -3rpx;
transform:scale(.6);
-webkit-transform: scale(.6);
-moz-transform: scale(.6);
-ms-transform: scale(.6);
vertical-align: middle;
}

button去除默认边框:

[code]button::after {
border: none
}
/**
注意:需要修改button其他样式,只需把默认样式覆盖即可
**/

 

阅读更多
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: