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

Commit c8d3ea7

Browse files
committed
fix: stack images
1 parent bc62428 commit c8d3ea7

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

jehon-image-loading.js

+19-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const root = import.meta.url.match(/.*\//);
33
let WaitingWheel = root + '/waiting.png';
44

55
const urlAttribute = 'src';
6-
const transitionTimeSecs = '0.5';
6+
const transitionTimeSecs = 0;
77
/**
88
*
99
* System: 2 images presents
@@ -34,10 +34,12 @@ export default class JehonImageLoading extends HTMLElement {
3434
display: block;
3535
width: 100%;
3636
height: 100%;
37+
38+
position: relative;
3739
}
3840
3941
img {
40-
position: relative;
42+
position: absolute;
4143
4244
width: 100%;
4345
height: 100%;
@@ -91,21 +93,31 @@ export default class JehonImageLoading extends HTMLElement {
9193
if (url != this.#currentURL) {
9294
this.#currentURL = url;
9395

96+
// All the others are now supposed to be loaded
97+
this.querySelectorAll('img').forEach(el => el.removeAttribute('loading'));
98+
99+
// Create the new element, as "loading"
94100
const el = document.createElement('img');
95101
el.setAttribute('src', url);
96102
el.setAttribute('loading', 1);
97103
this.shadowRoot.appendChild(el);
98104

99105
el.addEventListener('load', () => {
100-
this.shadowRoot.querySelectorAll('img:not([loading])').forEach(img => img.remove());
101106
el.removeAttribute('loading');
107+
setTimeout(() => {
108+
this.shadowRoot.querySelectorAll('img:not([loading]):not(:last-child)')
109+
.forEach(img => img.remove());
110+
}, transitionTimeSecs * 1000);
111+
112+
// Warn parents
102113
this.dispatchEvent(new CustomEvent('load', { detail: url }));
103114
});
104115

105-
if (!whenReady) {
106-
// Simulate that we are ready
107-
el.dispatchEvent(new Event('load'));
108-
}
116+
}
117+
118+
if (!whenReady) {
119+
// Simulate that we are ready on the first 'loading' element (should be only one)
120+
this.shadowRoot.querySelector('[loading]').dispatchEvent(new Event('load'));
109121
}
110122

111123
return this;

0 commit comments

Comments
 (0)