Simplified the lazy loading of post images.
This commit is contained in:
parent
7b3e0f741a
commit
e561dfb9be
4 changed files with 19 additions and 25 deletions
|
@ -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" src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"></script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
const observer = lozad();
|
const el = document.querySelectorAll('#post-wrapper img');
|
||||||
|
const observer = lozad(el);
|
||||||
observer.observe();
|
observer.observe();
|
||||||
</script>
|
</script>
|
|
@ -64,19 +64,13 @@ layout: default
|
||||||
</div> <!-- .post-meta -->
|
</div> <!-- .post-meta -->
|
||||||
|
|
||||||
<div class="post-content">
|
<div class="post-content">
|
||||||
|
|
||||||
{% if page.image %}
|
{% if page.image %}
|
||||||
<img src="{{ page.image }}">
|
<img src="{{ page.image }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<!-- Add lozad class into image tags. see: <https://github.com/ApoorvSaxena/lozad.js#usage> -->
|
|
||||||
{% if content contains '<img src=' %}
|
|
||||||
{% capture loading %}
|
|
||||||
{{ "/assets/img/commons/loading.png" | relative_url }}
|
|
||||||
{% endcapture %}
|
|
||||||
{% assign replacement = '<img class="lozad" src=' | append: loading | append: ' data-src=' %}
|
|
||||||
{{ content | replace: '<img src=', replacement }}
|
|
||||||
{% else %}
|
|
||||||
{{ content }}
|
{{ content }}
|
||||||
{% endif %}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="post-tail-wrapper text-muted">
|
<div class="post-tail-wrapper text-muted">
|
||||||
|
|
|
@ -31,18 +31,18 @@ $prompt-newer: "{{ site.data.label.post.button.next }}";
|
||||||
@include semi-bold;
|
@include semi-bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post img {
|
.post {
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
margin-top: .5rem;
|
margin-top: .5rem;
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
max-width: 100%;
|
|
||||||
height: auto;
|
|
||||||
// filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.08));
|
|
||||||
position: relative;
|
position: relative;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
-webkit-transform: translateX(-50%);
|
-webkit-transform: translateX(-50%);
|
||||||
-ms-transform: translateX(-50%);
|
-ms-transform: translateX(-50%);
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.post-tail-wrapper {
|
.post-tail-wrapper {
|
||||||
margin-top: 4rem;
|
margin-top: 4rem;
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 99 B |
Loading…
Reference in a new issue