21 lines
590 B
Plaintext
21 lines
590 B
Plaintext
|
<script defer src="<%- conf.js %>"></script>
|
||
|
<script>
|
||
|
// https://www.npmjs.com/package/vanilla-lazyload
|
||
|
// Set the options globally
|
||
|
// to make LazyLoad self-initialize
|
||
|
window.lazyLoadOptions = {
|
||
|
elements_selector: ".lazy",
|
||
|
};
|
||
|
// Listen to the initialization event
|
||
|
// and get the instance of LazyLoad
|
||
|
window.addEventListener(
|
||
|
"LazyLoad::Initialized",
|
||
|
function (event) {
|
||
|
window.lazyLoadInstance = event.detail.instance;
|
||
|
},
|
||
|
false
|
||
|
);
|
||
|
document.addEventListener('DOMContentLoaded', function () {
|
||
|
window.lazyLoadInstance?.update();
|
||
|
});
|
||
|
</script>
|