我正在尝试在vue应用程序上使用aos库。显然,它没有检测到滚动事件,因为它只显示屏幕上的元素,滚动后不显示其他元素。
所以我认为我可以添加一个窗口滚动事件侦听器来刷新AOS函数,但似乎并不会触发该函数。
我尝试了一些方法:
mounted () {
window.addEventListener('scroll', function() {
console.log('Scrolling')
});
}
<template>
<div class="page" @scroll="scrollFunction">
Content...
</div>
</template>
<script>
...
methods: {
scrollFunction() {
console.log('scrolling from method')
}
}
</script>
created () {
window.addEventListener('scroll', this.scrollFunction);
},
destroyed () {
window.removeEventListener('scroll', this.scrollFunction);
}