hexo-lazyload-image-cdn
v2.0.1
Published
a hexo plugin which is used to have all images support lazyload, it will improve lots of the loading proformance.
Downloads
17
Readme
hexo-lazyload-image-cdn
hexo-lazyload-image-cdn 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.
Install
$ npm install hexo-lazyload-image-cdn --save
Usage
First add configuration in _config.yml
from your hexo project.
lazyload:
enable: true
onlypost: false
cdn:
enabled: false
url: https://cdn.com
onlypost
- If true, only the images from post or page will support lazy-load.
- If false, the whole images of your site will use lazy-load, including the images dist from your theme, but not including the background images from CSS style.
specify no-lazy for specify image
we can also disable the lazy process if specify a attribute on img tag in both markdown or html
<img no-lazy src="abc.png" />
Run hexo command.
$ hexo clean && hexo g
Enjoy it!
License
MIT