[Vuejs]-How to trigger wheel event on mobile

1👍

On mobile you should listen to touch events, either touchend (if you want to move pages once the "scroll" motion is done) or touchmove (if you want to move pages during the scroll). Either way, in your event callback you can calculate if you’re at the bottom of the page and then react accordingly:

if (window.innerHeight + window.scrollY >= document.body.offsetHeight) {
  // at bottom of page
}
👤yoduh

Leave a comment