微信小程序(6):基础内容组件

文章目录

      • 一、icon 图标
      • 二、progress 进度条
          • 1、percent:百分比0~100
          • 2、show-info:在进度条右侧显示百分比
          • 3、border-radius:圆角大小
          • 4、font-size:右侧百分比字体大小
          • 5、stroke-width:进度条线的宽度(指的是粗细)
          • 6、activeColor:已选择的进度条的颜色
          • 7、backgroundColor:未选择的进度条的颜色
          • 8、active:进度条从左往右的动画
          • 9、active-mode:backwards: 动画从头播;forwards:动画从上次结束点接着播
          • 10、duration:进度增加1%所需毫秒数,默认是30
      • 三、rich-text 富文本

一、icon 图标

微信小程序(6):基础内容组件_第1张图片

<icon type="success" size="40"/>
<icon type="success_no_circle" size="40"/>
<icon type="info" size="40"/>
<icon type="warn" size="40"/>
<icon type="waiting" size="40"/>
<icon type="cancel" size="40"/>
<icon type="download" size="40"/>
<icon type="search" size="40"/>
<icon type="clear" size="40"/>

微信小程序(6):基础内容组件_第2张图片
当然,也可以用 color 指定 icon 的颜色:

<icon type="success" size="40" color="pink"/>

在这里插入图片描述

二、progress 进度条

progress 的属性有很多,比如以下几个:

1、percent:百分比0~100
<progress percent="40"/>

微信小程序(6):基础内容组件_第3张图片

2、show-info:在进度条右侧显示百分比
<progress percent="40" show-info />

微信小程序(6):基础内容组件_第4张图片

3、border-radius:圆角大小
<progress percent="40" show-info  border-radius="5"/>

微信小程序(6):基础内容组件_第5张图片

4、font-size:右侧百分比字体大小
<progress percent="40" show-info  border-radius="5" font-size="18"/>

微信小程序(6):基础内容组件_第6张图片

5、stroke-width:进度条线的宽度(指的是粗细)
<progress percent="40" show-info  border-radius="5" font-size="18" stroke-width="10"/>

微信小程序(6):基础内容组件_第7张图片

6、activeColor:已选择的进度条的颜色
<progress percent="40" show-info activeColor="blue"/>

微信小程序(6):基础内容组件_第8张图片

7、backgroundColor:未选择的进度条的颜色
<progress percent="40" show-info activeColor="blue" backgroundColor="red"/>

微信小程序(6):基础内容组件_第9张图片

8、active:进度条从左往右的动画
<progress percent="40" show-info activeColor="blue" backgroundColor="red" active/>

可以看到进度是慢慢增长到40%的。
微信小程序(6):基础内容组件_第10张图片

9、active-mode:backwards: 动画从头播;forwards:动画从上次结束点接着播
10、duration:进度增加1%所需毫秒数,默认是30
<progress percent="40" show-info activeColor="blue" backgroundColor="red" active duration="60"/>

这里我们设置成60,可以看到进度增长的明显慢了。
微信小程序(6):基础内容组件_第11张图片

三、rich-text 富文本

<rich-text nodes='
小程序开发
'
></rich-text>

微信小程序(6):基础内容组件_第12张图片

你可能感兴趣的:(#,微信小程序)