Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

28 rader
602 B

  1. export function useScrollEnd() {
  2. let callback = null
  3. const handleScroll = () => {
  4. const scrollPosition = window.innerHeight + window.scrollY
  5. const pageHeight = document.documentElement.offsetHeight - 1 // 1 pixel offset to fix mobile browser
  6. if (scrollPosition >= pageHeight && typeof callback === 'function') {
  7. callback()
  8. }
  9. }
  10. const onScrollEnd = (cb) => {
  11. callback = cb
  12. }
  13. onMounted(() => {
  14. window.addEventListener('scroll', handleScroll)
  15. })
  16. onUnmounted(() => {
  17. window.removeEventListener('scroll', handleScroll)
  18. })
  19. return { onScrollEnd }
  20. }