3-微信小程序组件基本用法

小程序组件是由宿主环境提供的,开发者可以基于组件快速搭建出页面结构。官方把小程序组件分为9类。

  1. 视图容器
  2. 基础内容
  3. 表单组件
  4. 导航组件
  5. 媒体组件
  6. map地图组件
  7. canvas画布组件
  8. 开放能力
  9. 无障碍访问

常用视图组件

view

官网传送门
普通视图区域
类似于HTML中div,是一个块级元素

我们使用view进行一个简单的flex布局。结果如图
3-微信小程序组件基本用法_第1张图片
wxml

<view class="container">
	<view>Aview>
	<view>Bview>
	<view>Cview>
view>

wxss

/* pages/test/test.wxss */
.container{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 0;
}
.container view:nth-child(1){
	flex-grow: 1;
	background: goldenrod;
	text-align: center;
	height: 100rpx;
	line-height: 100rpx;
}
.container view:nth-child(2){
	flex-grow: 1;
	background: chocolate;
	text-align: center;
	height: 100rpx;
	line-height: 100rpx;
}
.container view:nth-child(3){
	flex-grow: 1;
	background: yellowgreen;
	text-align: center;
	height: 100rpx;
	line-height: 100rpx;
}

scroll-view

官网传送门
可滚动视图区域。使用竖向滚动时,需要给scroll-view一个固定高度,通过 WXSS 设置 height。组件属性的长度单位默认为px,2.4.0起支持传入单位(rpx/px)。

使用scroll-view做一个简单的滚动布局。结果如图
3-微信小程序组件基本用法_第2张图片
wxml

<scroll-view class="container" scroll-y>
	<view>Aview>
	<view>Bview>
	<view>Cview>
scroll-view>

wxss

/* pages/test/test.wxss */
.container{
	width: 50vw;
	height: 50vh;
	padding: 0;
}
.container view:nth-child(1){
	background: goldenrod;
	text-align: center;
	height: 20vh;
	line-height: 20vh;
}
.container view:nth-child(2){
	background: chocolate;
	text-align: center;
	height: 20vh;
	line-height: 20vh;
}
.container view:nth-child(3){
	background: yellowgreen;
	text-align: center;
	height: 20vh;
	line-height: 20vh;
}

横向滚动,结果如图
3-微信小程序组件基本用法_第3张图片

wxml

<scroll-view class="container" scroll-x>
	<view>Aview>
	<view>Bview>
	<view>Cview>
scroll-view>

wxss

.container{
	width: 500rpx;
	white-space: nowrap;
	height: 100rpx;
	padding: 0;
}
.container view:nth-child(1){
	display: inline-block;
	width: 200rpx;
	background: goldenrod;
	text-align: center;
	height: 100rpx;
	line-height: 100rpx;
}
.container view:nth-child(2){
	display: inline-block;
	width: 200rpx;
	background: chocolate;
	text-align: center;
	height: 100rpx;
	line-height: 100rpx;
}
.container view:nth-child(3){
	display: inline-block;
	width: 200rpx;
	background: yellowgreen;
	text-align: center;
	height: 100rpx;
	line-height: 100rpx;
}

swiper&swiper-item

官网传送门
简单的swiper示例
3-微信小程序组件基本用法_第4张图片
wxml

<swiper class="swiper-container" indicator-dots circular>
	<swiper-item>
		<view class="item">Aview>
	swiper-item>
	<swiper-item>
		<view class="item">Bview>
	swiper-item>
	<swiper-item>
		<view class="item">Cview>
	swiper-item>
swiper>

wxss

.swiper-container{
	height: 200rpx;
}
.swiper-container .item{
	width: 100%;
	text-align: center;
	height: 200rpx;
	line-height: 200rpx;
	background-color: lightskyblue;
}
swiper-item:nth-child(1) .item{
	background: lightskyblue;
}
swiper-item:nth-child(2) .item{
	background: lightsalmon;
}
swiper-item:nth-child(3) .item{
	background: lightpink;
}

常用基础内容组件

text

官网传送门
内联文本只能用 text 组件,不能用 view,如 foo bar
新增 span 组件用于内联文本和图片,如 bar

更多用法参考官方文档

官方文档入口

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