const order = ['blue', 'red', 'green', 'yellow'];
Page({
data: {
toView: 'red',
scrollTop: 100,
},
upper(e) {
console.log(e);
},
lower(e) {
console.log(e);
},
scroll(e) {
console.log(e.detail.scrollTop);
},
scrollToTop(e) {
console.log(e);
this.setData({
scrollTop: 0,
});
},
});
scroll-into-view
的优先级高于
scroll-top
。
在滚动
scroll-view
时会阻止页面回弹,所以在
scroll-view
中滚动时,无法触发
onPullDownRefresh
。