1
tinytin 2018-12-24 12:45:01 +08:00 1
用 getBoundingClientRect
|
2
mmmfj 2018-12-24 13:12:43 +08:00
这个代码图片是怎么生成的
|
3
molvqingtai OP @mmmfj 一个插件 Carbon
|
4
edwardwo 2018-12-24 14:37:42 +08:00 1
listEle.addEventListener('wheel', this.infiniteScroll)
用'wheel' event, 不要用 scroll, scroll 必须有滚动条时才触发. 'wheel' 一滚动, 就触发. 在 infiniteScroll 中再判断: scrollHeight = listEle.scrollHeight scrollTop = listEle.scrollTop offsetHeight = listEle.offsetHeight if (scrollHeight === scrollTop + offsetHeight) { this.$emit('loadMore') } |
5
molvqingtai OP @edwardwo 问题解决了,感谢大佬!
|