1. 程式人生 > >微信小程式——switch元件設定大小

微信小程式——switch元件設定大小

附上switch元件的文件地址 https://developers.weixin.qq.com/miniprogram/dev/component/switch.html

如上圖,官方文件沒有給出如何修改switch元件大小的值,只給出修改顏色的值,接下來就讓我們來解決修改switch大小的問題,css中有個zoom屬性,我們可以給zoom的值設定為

zoom:.6;

結果如下:

完整程式碼:

//wxml
<switch style='zoom:.6;' checked />
<switch checked />