Replies: 1 comment
-
This is correct, while this is the way lazysizes works. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
I added the lazyload to the image tags. Saw the loading and then the actual image. I was shocked to see the code change (src, lazyloaded) when viewing the source code.
Source code
< img src="/assets/img/1px.png" data-src="/assets/img/comparison/esg-father-son1.jpg?v=20200927" class="lazyload" alt="ESG." />
Desktop output
<img src="assets/img/comparison/esg-father-son1.jpg" data-src="assets/img/comparison/esg-father-son1.jpg?v=20200927" class= lazyloaded" alt="ESG">
It's correct. right?
Beta Was this translation helpful? Give feedback.
All reactions