mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-12-18 05:41:31 +00:00
Simplified the lazy loading of post images.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<!-- image lazy load -->
|
||||
<!-- image lazy load: https://github.com/ApoorvSaxena/lozad.js -->
|
||||
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
const observer = lozad();
|
||||
const el = document.querySelectorAll('#post-wrapper img');
|
||||
const observer = lozad(el);
|
||||
observer.observe();
|
||||
</script>
|
||||
Reference in New Issue
Block a user