Sha256: 48f7b728e41083e7f5ad030f639f6f921581941bc3ea5e04574100a53b6b09b9
Contents?: true
Size: 474 Bytes
Versions: 15
Compression:
Stored size: 474 Bytes
Contents
// Lazy load images // ex. <img src="/path/to/small-placeholder_image.png" data-src="/path/to/actual_image.jpg" alt="You better not leave it blank"> const IMAGE_LIST = document.querySelectorAll('img[data-src]'); // Our lazyloading images use a data-src to hold the actual image source. function lazyLoad() { for (const img of IMAGE_LIST) { img.src = img.getAttribute('data-src'); img.onload = () => img.removeAttribute('data-src'); } } export default lazyLoad;
Version data entries
15 entries across 15 versions & 1 rubygems