Skip to content
This repository was archived by the owner on Mar 9, 2023. It is now read-only.

Commit 7444659

Browse files
committed
feat: have a smooth transition (ANY-618)
1 parent 7f9001c commit 7444659

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

jehon-image-loading.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,13 @@ export default class JehonImageLoading extends HTMLElement {
6262
6363
opacity: 1;
6464
transition: opacity ${JehonImageLoading.#transitionTimeMs}ms linear;
65+
}
66+
67+
img[legacy] {
68+
opacity: 0;
69+
/* Removing the image is done a bit later to avoid the 'black' passage */
70+
transition-delay: ${JehonImageLoading.#transitionTimeMs / 2}ms
71+
}
6572
6673
img[loading] {
6774
opacity: 0;
@@ -120,12 +127,14 @@ export default class JehonImageLoading extends HTMLElement {
120127
}
121128

122129
// Image is really ready
130+
this.shadowRoot.querySelectorAll('img:not([loading])')
131+
.forEach(img => img.setAttribute('legacy', 'legacy'));
123132
el.removeAttribute('loading');
124133

125134
// Wait for animation to end
126135
await sleep(2 * Math.max(JehonImageLoading.#transitionTimeMs, 1));
127136

128-
this.shadowRoot.querySelectorAll('img:not([loading]):not(:last-of-type)')
137+
this.shadowRoot.querySelectorAll('img[legacy]')
129138
.forEach(img => img.remove());
130139

131140
// Warn the parents

0 commit comments

Comments
 (0)