hexo-lazyload-image
Version:
a hexo plugin which is used to have all images support lazyload, with the help of this functionality, it will improve lots of the loading proformance.
13 lines (11 loc) • 411 B
JavaScript
;
if (!hexo.config.lazyload || !hexo.config.lazyload.enable) {
return;
}
if (hexo.config.lazyload.onlypost) {
hexo.extend.filter.register('after_post_render', require('./lib/process').processPost);
}
else {
hexo.extend.filter.register('after_render:html', require('./lib/process').processSite);
}
hexo.extend.filter.register('after_render:html', require('./lib/addscripts').addScript);