25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

28 satır
636 B

  1. export function useScrollEnd() {
  2. let callback: Function | null = 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: Function | null) => {
  11. callback = cb
  12. }
  13. onMounted(() => {
  14. window.addEventListener('scroll', handleScroll)
  15. })
  16. onUnmounted(() => {
  17. window.removeEventListener('scroll', handleScroll)
  18. })
  19. return { onScrollEnd }
  20. }