Slide 4
Slide 4 text
Lazy-loading, one of our favourite tricks
Deferring the loading of less important features
● Initial page load only includes the most important things - content,
navigation, minimal amount of styles
● Use IntersectionObserver (thank you polyfill.io) to load images,
comments, ads etc. as the user scrolls down the page later
Bandwidth is not taken up by less important downloads, so the main
content loads super fast
...so everyone’s happy?