mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
Merge pull request #1823 from thornbill/extra-blury
Set background color on blurhash image load
This commit is contained in:
commit
5a2c0beec5
@ -87,6 +87,9 @@ import 'css!./style';
|
|||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(() => {
|
||||||
if (elem.tagName !== 'IMG') {
|
if (elem.tagName !== 'IMG') {
|
||||||
elem.style.backgroundImage = "url('" + url + "')";
|
elem.style.backgroundImage = "url('" + url + "')";
|
||||||
|
if (elem.classList.contains('blurhashed')) {
|
||||||
|
elem.style.backgroundColor = '#fff';
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
elem.setAttribute('src', url);
|
elem.setAttribute('src', url);
|
||||||
}
|
}
|
||||||
@ -108,6 +111,7 @@ import 'css!./style';
|
|||||||
if (elem.tagName !== 'IMG') {
|
if (elem.tagName !== 'IMG') {
|
||||||
url = elem.style.backgroundImage.slice(4, -1).replace(/"/g, '');
|
url = elem.style.backgroundImage.slice(4, -1).replace(/"/g, '');
|
||||||
elem.style.backgroundImage = 'none';
|
elem.style.backgroundImage = 'none';
|
||||||
|
elem.style.backgroundColor = null;
|
||||||
} else {
|
} else {
|
||||||
url = elem.getAttribute('src');
|
url = elem.getAttribute('src');
|
||||||
elem.setAttribute('src', '');
|
elem.setAttribute('src', '');
|
||||||
|
Loading…
Reference in New Issue
Block a user