小程序使用了scroll-view滚动组件时,如何判断滚动的方向
scroll-view组件里的属性bindscroll。
链接: bindscroll.
//wxml
<scroll-view scroll-y bindscroll="bindscrollfx" class="videoList">
//内容
</scroll-view>
// js
//判断上下滚动方向)(deltaY小于0时,向下,向上则反之)
bindscrollfx: function (e) {
var that = this;
consol
原创
2020-06-18 14:32:07 ·
1808 阅读 ·
0 评论