微信小程序组件-视图容器

文章目录

  • 视图容器
    • view 视图容器
      • 案例代码
    • swiper 滑块视图容器
      • 案例代码
      • indicator-color

微信小程序包含了六大组件: 视图容器基础内容导航表单互动导航。这些组件可以通过WXML和WXSS进行布局和样式设置,从而构建出丰富的小程序界面和交互体验。

  • 其中,视图容器组件包括view和scroll-view等,用于实现页面的结构和滚动效果;
  • 基础内容组件包括text和image等,用于显示文本和图片内容;
  • 表单组件包括button、input和checkbox等,用于实现用户输入和选择;
  • 互动组件包括contact和action-sheet等,用于实现用户之间的互动和操作。

视图容器,相当于html中的div。

微信小程序官方文档-组件

视图容器

微信小程序视图容器组件包括view和scroll-view等,用于实现页面的结构和滚动效果。

  • 属性
名称功能
cover-image覆盖在原生组件之上的图片视图
cover-view覆盖在原生组件之上的文本视图
grid-viewSkyline 下网格布局容器
list-view列表布局容器,仅支持作为 scroll-view 自定义模式下的直接子节点或 sticky-section 组件直接子节点
match-mediamedia query 匹配检测节点
movable-areamovable-view的可移动区域
movable-view可移动的视图容器,在页面中可以拖拽滑动
page-container页面容器
root-portal使整个子树从页面中脱离出来,类似于在 CSS 中使用 fixed position 的效果
scroll-view可滚动视图区域
share-element共享元素
sticky-header吸顶布局容器,仅支持作为 scroll-view 自定义模式下的直接子节点或 sticky-section 组件直接子节点
sticky-section吸顶布局容器,仅支持作为 scroll-view 自定义模式下的直接子节点
swiper滑块视图容器
swiper-item仅可放置在swiper组件中,宽高自动设置为100%
view视图容器

view 视图容器

属性说明

属性类型默认值必填说明最低版本
hover-classstringnone指定按下去的样式类。当 hover-class="none" 时,没有点击态效果1.0.0
hover-stop-propagationbooleanfalse指定是否阻止本节点的祖先节点出现点击态1.5.0
hover-start-timenumber50按住后多久出现点击态,单位毫秒1.0.0
hover-stay-timenumber400手指松开后点击态保留时间,单位毫秒1.0.0

Bug & Tip

  1. tip: 如果需要使用滚动视图,请使用 scroll-view

案例代码

我们把上一章中新建的页面替换为示例代码

<view class="section"><view class="section__title">flex-direction: row</view><view class="flex-wrp" style="flex-direction:row;"><view class="flex-item bc_green">1</view><view class="flex-item bc_red">2</view><view class="flex-item bc_blue">3</view></view></view><view class="section"><view class="section__title">flex-direction: column</view><view class="flex-wrp" style="height: 300px;flex-direction:column;"><view class="flex-item bc_green">1</view><view class="flex-item bc_red">2</view><view class="flex-item bc_blue">3</view></view></view>

官网中并没有说明样式代码,我们把以下代码贴到对应的.wxss

  • 样式
/* pages/demo/index.wxss */.page-section{margin-bottom: 20rpx;}.flex-wrp {display: flex;}.bc_green {background: green;width:100px; height: 100px;}.bc_red {background: red;width:100px; height: 100px;}.bc_blue {background: blue;width:100px; height: 100px;}
  • 效果图

swiper 滑块视图容器

功能描述

滑块视图容器。其中只可放置swiper-item组件,否则会导致未定义的行为。

属性说明

Skyline 仅列出与 WebView 属性的差异,未列出的属性与 WebView 一致。

属性类型默认值必填说明最低版本
indicator-dotsbooleanfalse是否显示面板指示点1.0.0
indicator-colorcolorrgba(0, 0, 0, .3)指示点颜色1.1.0
indicator-active-colorcolor#000000当前选中的指示点颜色1.1.0
autoplaybooleanfalse是否自动切换1.0.0
currentnumber0当前所在滑块的 index1.0.0
intervalnumber5000自动切换时间间隔1.0.0
durationnumber500滑动动画时长1.0.0
circularbooleanfalse是否采用衔接滑动1.0.0
verticalbooleanfalse滑动方向是否为纵向1.0.0
previous-marginstring“0px”前边距,可用于露出前一项的一小部分,接受 px 和 rpx 值1.9.0
next-marginstring“0px”后边距,可用于露出后一项的一小部分,接受 px 和 rpx 值1.9.0
snap-to-edgebooleanfalse当 swiper-item 的个数大于等于 2,关闭 circular 并且开启 previous-margin 或 next-margin 的时候,可以指定这个边距是否应用到第一个、最后一个元素2.12.1
display-multiple-itemsnumber1同时显示的滑块数量1.9.0
easing-functionstring“default”指定 swiper 切换缓动动画类型2.6.5
合法值说明default默认缓动函数linear线性动画easeInCubic缓入动画easeOutCubic缓出动画easeInOutCubic缓入缓出动画
bindchangeeventhandlecurrent 改变时会触发 change 事件,event.detail = {current, source}1.0.0
bindtransitioneventhandleswiper-item 的位置发生改变时会触发 transition 事件,event.detail = {dx: dx, dy: dy}2.4.3
bindanimationfinisheventhandle动画结束时会触发 animationfinish 事件,event.detail 同上1.9.0

change事件 source 返回值

从 1.4.0 开始,change事件增加 source字段,表示导致变更的原因,可能值如下:

  1. autoplay 自动播放导致swiper变化;
  2. touch 用户划动引起swiper变化;
  3. 其它原因将用空字符串表示。

Bug & Tip

  1. tip: 如果在 bindchange 的事件回调函数中使用 setData 改变 current 值,则有可能导致 setData 被不停地调用,因而通常情况下请在改变 current 值前检测 source 字段来判断是否是由于用户触摸引起。
  2. tip: 在 mac 小程序上,若当前组件所在的页面或全局开启了 enablePassiveEvent 配置项,该内置组件可能会出现非预期表现(详情参考 enablePassiveEvent 文档)

案例代码

wxml

<swiper indicator-dots="true" autoplay="true" interval="3000" duration="500"><swiper-item><image src="../image/202306001.png" width="375" height="170" /></swiper-item><swiper-item><image src="../image/202306002.png" width="375" height="170" /></swiper-item></swiper>
  • 效果图

indicator-color

根据属性indicator-color 来设置一个指示点颜色

<swiper indicator-dots="true" autoplay="true" indicator-color="#80ff80" interval="3000" duration="500"><swiper-item><image src="../image/202306001.png" width="375" height="170" /></swiper-item><swiper-item><image src="../image/202306002.png" width="375" height="170" /></swiper-item></swiper>
  • 效果图


下一章节 微信小程序常用组件-基础组件