Add attribute when the image is loaded in

Created on 8 February 2023, about 2 years ago
Updated 6 April 2023, about 2 years ago

Problem/Motivation

Would be nice if there was a class or data attribute attached to the image when the image is loaded.
That way we add some CSS transitions so it's not so jarring when the image loads.
Inspired by lozad.js https://github.com/ApoorvSaxena/lozad.js/issues/49
Example CSS with data-load="true" to fade in the image

img {
    opacity: 0;
    transition: opacity 0.4s;
}
img[data-loaded=true] {
    opacity: 1;
}

Proposed resolution

Add a data-loaded="true" attribute to the image when the correct size image has been loaded.

✨ Feature request
Status

Fixed

Version

1.3

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States andysipple

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024