├── README.md
├── img
├── dog-battersea.jpg
├── dog-battersea.svg
├── dog-face.jpg
├── dog-face.svg
├── dog-running.jpg
└── dog-running.svg
├── index.html
├── lazy-load.js
├── lazy-load.min.js
└── package.json
/README.md:
--------------------------------------------------------------------------------
1 | # Lazy Load - Intersection Observer
2 | A library to lazy load images using Intersection Observer
3 |
4 | ## Details
5 |
6 | If you'd like to learn more about this code, I've written up a full blog post on my [blog](https://deanhume.com/Home/BlogPost/lazy-loading-images-using-intersection-observer/10163).
7 |
8 | This library was also featured on the [2017 Performance Calendar](https://calendar.perfplanet.com/2017/progressive-image-loading-using-intersection-observer-and-sqip/) - for more details, please see this [link](https://calendar.perfplanet.com/2017/progressive-image-loading-using-intersection-observer-and-sqip/).
9 |
10 |
11 | For a live demo, please visit [deanhume.github.io/lazy-observer-load](https://deanhume.github.io/lazy-observer-load).
12 |
--------------------------------------------------------------------------------
/img/dog-battersea.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/deanhume/lazy-observer-load/6b0a5b4ff2e4d2fee77e622b5d475e46a75ca889/img/dog-battersea.jpg
--------------------------------------------------------------------------------
/img/dog-battersea.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/img/dog-face.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/deanhume/lazy-observer-load/6b0a5b4ff2e4d2fee77e622b5d475e46a75ca889/img/dog-face.jpg
--------------------------------------------------------------------------------
/img/dog-face.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/img/dog-running.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/deanhume/lazy-observer-load/6b0a5b4ff2e4d2fee77e622b5d475e46a75ca889/img/dog-running.jpg
--------------------------------------------------------------------------------
/img/dog-running.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |