hexo-lazyload-image is a hexo plugin which is used to have all images support lazyload automatically. With the help of this functionality, it will improve lots of the loading proformance..
All the lazy-load images only shows up when they are within current viewport.
$ npm install hexo-lazyload-image --save
First add configuration in _config.yml
from your hexo project.
lazyload:
enable: true
onlypost: false # optional
loadingImg: # optional eg ./images/loading.gif
isSPA: false # optional
preloadRatio: 3 # optional, default is 1
onlypost
loadingImg
isSPA For performance considering, isSPA is added. If your theme is a SPA page, please set it as true to make the lazy loading works,
preloadRatio This option is for a better experience and default value is 1. This ratio means to pre-load the images where is within how many ratios than current screen size, even these images are not in current view point.
Helper APIs
window.imageLazyLoadSetting = {
processImages, // core method to process lazyload image
onImageLoaded: // this will be triggered after any real image loaded
};
This plugin is not going to provide any complex strategy like hexo compiling to generate placeholder image or fetch image size. But it does support already if you specify both the placeholde image and original image as below:
<img src="https://ik.imagekit.io/demo/img/image4.jpeg?tr=w-400,h-300,bl-30,q-50" data-original="https://ik.imagekit.io/demo/img/image4.jpeg?tr=w-400,h-300" />
we can also support the lazy process if specify a attribute on any tag in both markdown or html
<div bg-lazy style="background-image: url('https://ik.imagekit.io/demo/img/image10.jpeg?tr=w-600,h-400'); height: 400px; max-width: 600px;"></div>
we can also disable the lazy process if specify a attribute on img tag in both markdown or html
<img no-lazy src="https://github.com/Troy-Yang/hexo-lazyload-image/raw/master/abc.png" />
Run hexo command.
$ hexo clean && hexo g
To disable the lazy loading of images in a specific post, you can add lazyimage: no
to the post's front matter header. However, this option will only work if the onlypost
setting in your site's configuration file is set to true.
# In your post's front matter
---
title: My Post with Non-Lazy Loaded Images
lazyimage: no
---
# In your site's config file
onlypost: true
I've test it manually with some popular themes like landscape(official), material, next, jacman and myself theme hexo-theme-twentyfifteen-wordpress, and yours I believe!
Enjoy it!
MIT