概述
实现:
<style scoped>
/* 复选框未选中前的样式 */
/deep/ .uni-checkbox-input {
width: 36upx;
height: 36upx;
border-radius: 50%;
margin-right: 0;
border: 1px solid #888888;
}
/* 复选框取消默认样式 */
/deep/ uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked:before {
font: normal normal normal 14px/1 uni;
content: "EA08";
font-size: 0; /* 重点使用这一步取消的默认样式 */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-48%) scale(1);
-webkit-transform: translate(-50%,-48%) scale(1);
}
/* 重新定义复选框选中后的样式*/
/deep/ .uni-checkbox-input-checked::before {
width: 19px;
height: 19px;
background: #ff0000;
border-radius: 50%;
/* background: url(../../static/img/seal.png) no-repeat center; */ //选中图标
}
</style>
最后
以上就是优美背包为你收集整理的uni-app 把checkbox修改样式为圆形,并修改选中颜色及选中图标的全部内容,希望文章能够帮你解决uni-app 把checkbox修改样式为圆形,并修改选中颜色及选中图标所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复