mirror of
https://github.com/wah-su/wahs.wah.su.git
synced 2025-04-05 15:54:37 +00:00
Add image Alt text
This commit is contained in:
parent
fc48216d6f
commit
165bf71a7a
2 changed files with 3 additions and 0 deletions
|
@ -44,6 +44,7 @@ function renderImage(endpoint, bucket, prefix, isrc, placeholder) {
|
||||||
Img.src = `https://wsrv.nl/?url=${encodeURI(src)}`;
|
Img.src = `https://wsrv.nl/?url=${encodeURI(src)}`;
|
||||||
Img.className = "invisible w-full h-full object-contain";
|
Img.className = "invisible w-full h-full object-contain";
|
||||||
Img.loading = "lazy";
|
Img.loading = "lazy";
|
||||||
|
Img.alt = isrc
|
||||||
|
|
||||||
placeholder.appendChild(blurImg);
|
placeholder.appendChild(blurImg);
|
||||||
placeholder.appendChild(Img);
|
placeholder.appendChild(Img);
|
||||||
|
|
|
@ -23,6 +23,7 @@ function renderImage(endpoint, bucket, prefix, isrc, iid, placeholder) {
|
||||||
blurImg.src = `https://wsrv.nl/?url=${encodeURI(src)}&w=16&h=16`;
|
blurImg.src = `https://wsrv.nl/?url=${encodeURI(src)}&w=16&h=16`;
|
||||||
blurImg.className = "object-cover w-full h-full absolute inset-0";
|
blurImg.className = "object-cover w-full h-full absolute inset-0";
|
||||||
blurImg.loading = "lazy";
|
blurImg.loading = "lazy";
|
||||||
|
blurImg.alt = `Loading: ${isrc}`
|
||||||
Img.src = `https://wsrv.nl/?url=${encodeURI(src)}&w=256&h=256`;
|
Img.src = `https://wsrv.nl/?url=${encodeURI(src)}&w=256&h=256`;
|
||||||
Img.srcset = `https://wsrv.nl/?url=${encodeURI(
|
Img.srcset = `https://wsrv.nl/?url=${encodeURI(
|
||||||
src
|
src
|
||||||
|
@ -30,6 +31,7 @@ function renderImage(endpoint, bucket, prefix, isrc, iid, placeholder) {
|
||||||
Img.sizes = `(max-width: 600px) 256px, 512px`;
|
Img.sizes = `(max-width: 600px) 256px, 512px`;
|
||||||
Img.className = "invisible object-cover w-full h-full absolute inset-0";
|
Img.className = "invisible object-cover w-full h-full absolute inset-0";
|
||||||
Img.loading = "lazy";
|
Img.loading = "lazy";
|
||||||
|
Img.alt = isrc
|
||||||
|
|
||||||
const view = getView();
|
const view = getView();
|
||||||
const container = document.getElementById("images_images");
|
const container = document.getElementById("images_images");
|
||||||
|
|
Loading…
Add table
Reference in a new issue