wxml
<scroll-view class="recommend_scroll_x_box" scroll-x="true">
<view class="recommend_hot_box" wx:for="{{hotList}}">
<image src="{{item.pic}}" class="recommend_hot_image"></image>
</view>
</scroll-view>
wxss
.recommend_scroll_x_box {
height: 245rpx;
white-space: nowrap;
display: flex;
}
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}
.recommend_hot_box {
width: 230rpx;
height: 245rpx;
margin-right: 24rpx;
display: inline-block;
}
.recommend_hot_image {
width: 230rpx;
height: 143rpx;
}
js
Page({
data: {
hotList: [
{
pic: '/images/example2.png',
title: '玻璃棧道',
desc: '22W人去過'
}, {
pic: '/images/example2.png',
title: '玻璃棧道',
desc: '22W人去過'
}, {
pic: '/images/example2.png',
title: '玻璃棧道',
desc: '22W人去過'
}, {
pic: '/images/example2.png',
title: '玻璃棧道',
desc: '22W人去過'
}, {
pic: '/images/example2.png',
title: '玻璃棧道',
desc: '22W人去過'
}
]
}
二:调用现有接口,减少用户输入,改善用户体验感
本文来自公众号:TITF,推荐微信小程序爱好者关注此公众号,是目前比较好的微信小程序公众号之一;
12月21号,微信开发工具版本更新,新增微信扫一扫功能,用户可通过小程序打开微信扫一扫功能扫描二维码获取到二维码上的数据
API名称:wx.scanCode({})
API参数:
success:接口调用成功的回调函数,回调参数charSet、errMsg、result、scanType
fail:接口调用失败的回调函数
complete:接口调用结束的回调函数(接口调用成功或失败都会执行)
原创示例
代码区