Sha256: ce0c47ca31d3a16f04b1cb7f9e107470f827df4fdbc083754aed2c021598d010

Contents?: true

Size: 391 Bytes

Versions: 24

Compression:

Stored size: 391 Bytes

Contents

// Lazy load images
// ex. <img data-src="/path/to/image.jpg" alt="">
function lazyLoad() {
  [].forEach.call(document.querySelectorAll('img[data-src]'), function(img) {
    img.setAttribute('src', img.getAttribute('data-src'));
    img.onload = function() {
      img.removeAttribute('data-src');
    };
  });
}

document.addEventListener('DOMContentLoaded', function() {
  lazyLoad();
});

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
kcc-gem-theme-0.7.7 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.7.6 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.7.5 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.7.4 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.7.3 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.7.2 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.7.1 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.7.0 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.6.1 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.6.0 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.5.1 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.5.0 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.4.7 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.4.6 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.4.5 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.4.4 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.4.3 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.4.2 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.4.1 assets/js/theme/script/lazyLoad.js
kcc-gem-theme-0.4.0 assets/js/script/lazyLoad.js