var x = 0; document.addEventListener("DOMContentLoaded", function() { var lazyloadImages = document.querySelectorAll("img.lazyimg"); var lazyloadThrottleTimeout; function lazyloadimg () { if(lazyloadThrottleTimeout) { clearTimeout(lazyloadThrottleTimeout); } lazyloadThrottleTimeout = setTimeout(function() { var scrollTop = window.pageYOffset; lazyloadImages.forEach(function(img) { if(img.offsetTop < (window.innerHeight + scrollTop)) { //console.log(img.dataset.src); img.src = img.dataset.src; img.classList.remove('lazyimg'); } }); if(lazyloadImages.length == 0) { document.removeEventListener("scroll", lazyloadimg); window.removeEventListener("resize", lazyloadimg); window.removeEventListener("orientationChange", lazyloadimg); } }, 20); } document.addEventListener("scroll", lazyloadimg); window.addEventListener("resize", lazyloadimg); window.addEventListener("orientationChange", lazyloadimg); }); document.addEventListener('DOMContentLoaded', function() { var head = document.getElementsByTagName('head')[0]; var link = document.createElement('link'); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = '/Oswald.css'; head.appendChild(link); });