Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

28 wiersze
558 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
  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. }