Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. const watcher = new IntersectionObserver(onEnterView)
  2. const lazyImages = document.querySelectorAll('img.lazy')
  3. for (let image of lazyImages) {
  4. watcher.observe(image) // 開始監視
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement