本文主要是介绍uniapp微信小程序的单项选择器大小颜色的修改,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题描述:需要修改radio的大小和颜色,组件官网radio-group | uni-app官网
修改radio颜色
直接使用color属性就行了
eg.
<label class="agree_label"><radio class="agree_radio" value="" @click="setuserAgreestate" :checked="useragreeState" color="red" />
</label>
修改radio大小
使用transform,如下
<label class="agree_label"><radio class="agree_radio" value="" @click="setuserAgreestate" :checked="useragreeState" color="red" />
</label>
.agree_radio{transform: scale(0.7);}
这篇关于uniapp微信小程序的单项选择器大小颜色的修改的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!