Add image Alt text

This commit is contained in:
Kentai Radiquum 2025-02-02 23:26:26 +05:00
parent fc48216d6f
commit 165bf71a7a
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 3 additions and 0 deletions

View file

@ -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);

View file

@ -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");