123movies-seo/resources/js/img.js

18 lines
467 B
JavaScript
Raw Normal View History

2024-08-24 23:08:42 +03:00
import LazyLoad from 'vanilla-lazyload';
// (() => {
// document.addEventListener('readystatechange', event => {
// if (document.readyState === "complete") {
window.lLoad = new LazyLoad({
elements_selector: ".lazy",
// use_native: true,
// load_delay: 100,
// effect : "fadeIn"
// ... more custom settings?
});
// }
// });
// })();