You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would allow for a either using css alone to apply the image like:
// placeholder image
.lazyload-bg-example {
background-image:url('low-quality-placeholder.jpg');
}
// image applied once the 'visible' class is set
.lazyload-bg-example .visibile {
background-image:url('lazy-loaded-image.jpg');
}
or you could use the data-src and apply it inline with css or your own javascript ?
That sound like ti would be workable to your or anyone else reading this?
Possibly using some other data tag like data-bg?
The text was updated successfully, but these errors were encountered: