微信小程序中怎样实现切换页面的效果?
Admin 2021-10-29 群英技术资讯 2424 次浏览
这篇文章给大家分享的是有关微信小程序实现切换页面的内容。小编觉得挺实用的,因此分享给大家做个参考,这里要实现的需求是,点击导航条可以切换部分页面,具体的实现效果如下,感兴趣的朋友就继续往下看吧。
我录制了个gif如下,黄色部分是不可以滑动的,蓝色部分可以滑动。
代码解说:
wxml代码:
<!-- 导航条 --> <view class="nav"> <view bindtap="navSwitch" data-index="0" class="{{navState==0 ? 'nav-switch-style':''}}">页面一</view> <view bindtap="navSwitch" data-index="1" class="{{navState==1 ? 'nav-switch-style':''}}">页面二</view> <view bindtap="navSwitch" data-index="2" class="{{navState==2 ? 'nav-switch-style':''}}">页面三</view> </view> <!-- 不可滑动页 --> <view> <view wx:if="{{navState==0}}" class="style-default">1</view> <view wx:elif="{{navState==1}}" class="style-default">2</view> <view wx:else="{{navState==2}}" class="style-default">3</view> </view> <!-- 滑动页 --> <swiper bindchange="bindchange" current="{{navState}}"> <block> <swiper-item> <view class="style-roll"> <text>左右可滑动1</text> </view> </swiper-item> <swiper-item> <view class="style-roll"> <text>左右可滑动2</text> </view> </swiper-item> <swiper-item> <view class="style-roll"> <text>左右可滑动3</text> </view> </swiper-item> </block> </swiper>
js代码:
Page({ data: { navState: 0,//导航状态 }, //监听滑块 bindchange(e) { // console.log(e.detail.current) let index = e.detail.current; this.setData({ navState:index }) }, //点击导航 navSwitch: function(e) { // console.log(e.currentTarget.dataset.index) let index = e.currentTarget.dataset.index; this.setData({ navState:index }) }, /** * 生命周期函数--监听页面加载 */ onLoad: function(options) { }, })
wxss代码:
.nav{ display: flex; justify-content: space-around; padding: 20rpx; background-color: rgb(129, 241, 55); font-size: 30rpx; } .nav-switch-style{ color: snow; } .style-default{ background-color: rgb(247, 229, 130); padding: 100rpx 0; text-align: center; } .style-roll{ background-color: rgb(130, 177, 247); padding: 100rpx 0; text-align: center; }
以上就是微信小程序实现切换页面效果的介绍,本文知识提供了一种切换页面的方法,仅供参考。想要了解更多微信小程序实现切换页面效果的内容,可以继续浏览群英网络其他相关的文章。
文本转载自脚本之家
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章给大家分享的是JavaScript中位运算符。小编觉得挺实用的,因此分享给大家做个参考。JavaScript中的有7种位运算符,文中的示例代码介绍得很详细,有需要的朋友可以参考,接下来我们一起来看看它们的使用。
本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于number类型的相关知识,包括了number类型的常见误区背后原理以及解决方法等内容,下面一起来看一下,希望对大家有帮助。
这篇文章给大家分享的是有关vue登录图形验证码的内容,图像验证码在很多登录页面都会使用到,小编觉得挺实用的,因此分享给大家做个参考,接下来一起跟随小编看看吧。
/**连接池连接和缓存的技术**/varmysql=require('mysql');varpool=mysql.createPool({connectionLimit:2,//连接池最多可以创建连接数host:'',user:'root',database:'yudi',password:'',queueL
在vue开发中,难免遇到各种表单校验,下面这篇文章主要给大家介绍了关于vue表单验证rules及validator验证器使用的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考下
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008