You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
511 B

<!--pages/test/icon.wxml-->
<text>pages/test/icon.wxml</text>
<view class="demobox">
<view class="title">1.内容的变化</view>
<block wx:for="{{iconType}}">
<icon type="{{item}}" size="36"></icon>
</block>
<view class="title">2.颜色的变化</view>
<block wx:for="{{iconColor}}">
<icon type="info" size="36" color="{{item}}"></icon>
</block>
<view class="title">3.大小的变化</view>
<block wx:for="{{iconSize}}">
<icon type="info" size="{{item}}"></icon>
</block>
</view>