zu1k / hexo-lazyload-image-cdn

lazyload image with cdn plugin for Hexo.

Home Page:https://www.npmjs.com/package/hexo-lazyload-image-cdn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

lazyload image with cdn plugin for Hexo.

https://www.npmjs.com/package/hexo-lazyload-image-cdn

License:MIT License


Languages

Language:JavaScript 100.0%