大家使用過的APP,如果是安裝后第一次打開,百分之八十都有引導頁,主要是幾張圖片切換,介紹APP的用途和特色。而微信小程序相對比較簡單,則比較少出現(xiàn)這種引導頁,但是如果你的小程序相對比較復雜,就需要制作一個類似APP引導頁,里面放幾張圖片介紹如何使用小程序。那么具體如何制作呢?
<swiper class="guide_swiper" indicator-dots="{{indicatorDots}}"
autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
<block wx:for="{{imgUrls}}">
<swiper-item>
<image src="{{item}}" mode='aspectFit' class="slide-image" />
</swiper-item>
</block>
</swiper>
<view class="next_btn" bindtap='goto_next'>
立即體驗
</view>
3、guide.wxss如下
page{
background-color:#fff;
}
.guide_swiper{
width:100%;
height:100vh;
}
.slide-image{
margin:0 auto;
height:100vh;
width:100%;
}
.next_btn{
position:fixed;
z-index:1000;
bottom:60rpx;
width:210rpx;
height:60rpx;
line-height:60rpx;
left:270rpx;
font-size:30rpx;
text-align:center;
box-sizing:border-box;
background-color: #33b6ea;
opacity:0.7;
color:#fff;
border-radius:30rpx;
}
4、guide.js代碼如下
Page({
data: {
imgUrls: [
'圖片地址1',
'圖片地址2',
'圖片地址3',
'圖片地址4',
'圖片地址5'
],
indicatorDots: true,
autoplay: false,
interval: 5000,
duration: 300
},
goto_next:function(val) {
wx.redirectTo({
url: '/pages/index/index'
})
}
})