Created
May 29, 2018 09:19
-
-
Save aschmelyun/c4130e39479629e35ea40e4223be11b0 to your computer and use it in GitHub Desktop.
Detect scrolling to the bottom of a div in Vue.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="wrapper"> | |
<div class="box" @scroll="handleScroll"> | |
<p>Your content here...</p> | |
</div> | |
<a href="#" v-if="hasScrolledToBottom">Show After Scrolling</a> | |
</div> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { | |
hasScrolledToBottom: false | |
} | |
}, | |
methods: { | |
handleScroll: function(el) { | |
if((el.srcElement.offsetHeight + el.srcElement.scrollTop) >= el.srcElement.scrollHeight) { | |
this.hasScrolledToBottom = true; | |
} | |
} | |
} | |
} | |
</script> |
fuck
Thanks!
Please, don't use
srcElement
-- it's deprecated. Usetarget
instead.
Nice catch!
Please use Math.ceil()
like below.
if(Math.ceil(el.srcElement.offsetHeight + el.srcElement.scrollTop)) >= el.srcElement.scrollHeight){..}
It is not working, who knows when scroll bottom fetching data
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please, don't use
srcElement
-- it's deprecated. Usetarget
instead.