1. 视图容器(View Container)
    1. view 视图容器
      1. hover Boolean false 是否启用点击态
      2. hover-class String none 指定按下去的样式类。当 hover-class="none" 时,没有点击态效果
      3. hover-start-time Number 50 按住后多久出现点击态,单位毫秒
      4. hover-stay-time Number 400 手指松开后点击态保留时间,单位毫秒
    2. scroll-view 可滚动视图容器
      1. scroll-x Boolean false 允许横向滚动
      2. scroll-y Boolean false 允许纵向滚动
      3. upper-threshold Number 50 距顶部/左边多远时(单位px),触发 scrolltoupper 事件
      4. lower-threshold Number 50 距底部/右边多远时(单位px),触发 scrolltolower 事件
      5. scroll-top Number 设置竖向滚动条位置
      6. scroll-left Number 设置横向滚动条位置
      7. scroll-into-view String 值应为某子元素id(id不能以数字开头),则滚动到该元素,元素顶部对齐滚动区域顶部,只支持纵向滚动
      8. scroll-with-animation Boolean false 在设置滚动条位置时使用动画过渡
      9. enable-back-to-top Boolean false iOS点击顶部状态栏、安卓双击标题栏时,滚动条返回顶部,只支持竖向
      10. bindscrolltoupper EventHandle 滚动到顶部/左边,会触发 scrolltoupper 事件
      11. bindscrolltolower EventHandle 滚动到底部/右边,会触发 scrolltolower 事件
      12. bindscroll EventHandle 滚动时触发,event.detail = {scrollLeft, scrollTop, scrollHeight, scrollWidth, deltaX, deltaY}
    3. swiper 滑块视图容器
      1. indicator-dots Boolean false 是否显示面板指示点
      2. indicator-color Color rgba(0, 0, 0, .3) 指示点颜色
      3. indicator-active-color Color #000000 当前选中的指示点颜色
      4. autoplay Boolean false 是否自动切换
      5. current Number 0 当前所在页面的 index
      6. interval Number 5000 自动切换时间间隔
      7. duration Number 500 滑动动画时长
      8. circular Boolean false 是否采用衔接滑动
      9. bindchange EventHandle current 改变时会触发 change 事件,event.detail = {current: current}
  2. 基础内容(Basic Content)
    1. icon 图标
      1. type String icon的类型,有效值:success, success_no_circle, info, warn, waiting, cancel, download, search, clear
      2. size Number 23 icon的大小,单位px
      3. color Color icon的颜色,同css的color
    2. text 文字
      1. selectable Boolean false 文本是否可选
    3. progress 进度条
      1. percent Float 无 百分比0~100
      2. show-info Boolean false 在进度条右侧显示百分比
      3. stroke-width Number 6 进度条线的宽度,单位px
      4. color Color #09BB07 进度条颜色 (请使用 activeColor)
      5. activeColor Color 已选择的进度条的颜色
      6. backgroundColor Color 未选择的进度条的颜色
      7. active Boolean false 进度条从左往右的动画