I'm building a website for a gallery owner that has a lot of images per webpage. Therefore I want to lazy load the images on the webpage, making the initial load less heavy. However, I would like to implement this in a "progressive enhancement" way.
I've found a lot of lazy loading methods but they all require fiddling with the html code
in such a way that the webpage would be useless with javascript turned off. (eg. the src
attribute of the img
tags remains unset until the images is lazy loaded).
To implement a lazy loading method progressivly I think one would need the following:
- prevent the browser from fetching the images, even though thers are on the page, but only do this when javascript is on (so on non-javascript browsers, the images still load as normal). This should be done without altering the html.
- save the
src
attribute in adata-src
attribute - sequentually load the images when scrolling down
Of these three steps the first one seems the hardest one. Even this stackoverflow discussion did not provide an answer that doesn't ruin progressive enhancement.
Has anyone got any ideas?
Since none has come up with an answer, I'll post what I found a reasonable solution.
This problem boils down to the following: while we want to prevent the browser from downloading the images when javascript is turned on, we must be sure the images are downloaded when javascript is turned off or not available.
It is hard to consistently use javascript to stop loading images on a page when they are in the "normal" format:
To stop the images from downloading we'd have to remove their
src
attributes, but in order to do this, the DOM should be loaded already. With the optimisations a lot of browsers have nowadays it is hard to guarantee that the images aren't downloading already.On top of that, we certainly want to prevent interrupting images that are already downloading, because this would simply be a waste.
Therefore, I choose to use the following solution:
Notice how the images outside of the
noscript
tag have nosrc
but adata-src
attribute instead. This can be used by a lazyloading script to load the images one by one for instance.Only when javascript is not available, will the images inside the
noscript
block be visible, so there's no need to load the.lazy
images (and no way to do this, since javascript is unavailable).We do need to hide the images though:
Like the
img
tags inside thenoscript
block, thisstyle
block will only be visible to the browser when javascript is unavailable.On a related note: I thought I could reduce the html size by not putting a
src
ordata-src
attributes on the lazy images at all. This would be nice because it eliminates the redundant url from the page, saving us some bandwidth.I thought I could pluck the
src
attribute out of thenoscript
block using javascript anyways. However, this is impossible: javascript has no access to the contents of a noscript block. The above scheme is therefore the most efficient I could come up with.