2、guide.wxml代码如下
<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:static;
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'
})
}
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源:
创新互联