本篇内容介绍了“微信小程序仿APP section header悬停效果怎么实现”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
首先写一个非常简单列表:
wxml代码
<view class='header'>这里是header</view><view class='section-header'>这是section-header</view><block wx:for="{{testData}}"><view class='section-cell'>{{item}}</view></block>
wxss代码
.header {height: 300rpx;width: 750rpx;background-color: bisque;margin-bottom: 10rpx;} .section-header {height: 80rpx;width: 750rpx;background-color: rebeccapurple;} .section-cell {height: 180rpx;width: 750rpx;background-color: gold;margin-top: 10rpx;}
简单列表效果.png 那我们要怎么样让头部悬停呢?
1、我们需要在页面布局完成后获取到头部的位置:
在onReady方法中,查询section-header节点并拿到该节点此时距离当前顶部的距离
注意是 此时,这个后面再讲
/*** 页面加载完成*/onReady: function () {let that = thislet query = wx.createSelectorQuery()query.select(".section-header").boundingClientRect(function (res) {// console.log(res)that.setData({//section header 距离 ‘当前顶部’ 距离sectionHeaderLocationTop: res.top})}).exec()},
2、我们需要监听页面滚动:
fixed用来控制是否悬停
/*** 页面滚动监听*/onPageScroll: function (e) {//console.log(e)this.setData({scrollTop: e.scrollTop})if (e.scrollTop > this.data.sectionHeaderLocationTop) {this.setData({fixed: true})} else {this.setData({fixed: false})}},
3、修改相应的样式:
将原来的header修改为如下代码,并添加一个placeholder视图,目的是当我们的section-header视图悬停时,保持占位,避免页面抖动
<view class='{{fixed ? "section-header section-fixed": "section-header"}}'>这是section-header</view><view hidden='{{!fixed}}' class="section-header section-placeholder"></view>
增加wxss代码
.section-placeholder {background-color: white;} .section-fixed {position: fixed;top: 0;}
附上js data 代码:
data: {testData:[1,2,3,4,5,6,7,8,9,10],//section header 距离 ‘当前顶部’ 距离sectionHeaderLocationTop: 0,//页面滚动距离scrollTop: 0,//是否悬停fixed: false},
这个有一个要注意的点,我们在使用swlectorQuery()的时候,获取到的top是当前调用改函数时相应节点对应当前顶部的距离,这就有一个问题,当我们的header的高度(不一定是header只要是section-header上面的视图的高度)发生变化的时候,悬停就会有问题,因为我们的高度是最开始的时候获取的。
所以在我们改变高度之后,要再次调用该函数去获取距离"当前顶部"的距离,这也是要注意的一个点,如果我能直接再次获取并赋值,发现还是有问题,就是因为此时获取的top不是距离整个page页面顶部,而我们监听的页面滚动却是,所以我们可以修改代码如下:
let that = thislet query = wx.createSelectorQuery()query.select(".section-header").boundingClientRect(function (res) {// console.log(res)that.setData({//section header 距离 ‘当前顶部’ 距离sectionHeaderLocationTop: res.top + that.data.scrollTop})}).exec()
加上此时页面滚动的距离,则能保证我们预期的效果出现
“微信小程序仿APP section header悬停效果怎么实现”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。