Is there a clean way of laoding a small preview for a big image first to reduce the time where the website is white only?
Can the srcset
property in general or more specifically the NgOptimizedImage Angular directive be leveraged to solve that?
I read many proposals for plain HTML about using a background image but this seems to have the problem that the whole resolution is loaded before the preview is loaded in at least some cases.
Currently my code is:
<img width="6000" height="3200" alt=""
ngSrc="assets/avatar" ngSrcset="600w, 1000w, 1500w, 2000w, 2500w, 3000w, 6000w"
/>