├── .editorconfig ├── .eleventy.js ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── cache.js ├── example ├── basic │ ├── .eleventy.js │ ├── _includes │ │ └── template.njk │ ├── img │ │ ├── test-01.png │ │ ├── test-02.jpg │ │ ├── test-03.jpg │ │ └── transparent.png │ ├── index.md │ ├── nested │ │ ├── index.md │ │ └── test-02.jpg │ └── package.json ├── custom-selector │ ├── .eleventy.js │ ├── _includes │ │ └── template.njk │ ├── index.md │ └── package.json ├── eleventy-plugin-local-images │ ├── .eleventy.js │ ├── _includes │ │ └── template.njk │ ├── index.md │ └── package.json └── verlok-vanilla-lazyload │ ├── .eleventy.js │ ├── _includes │ └── template.njk │ ├── index.md │ └── package.json ├── helpers.js ├── package.json └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example/**/* 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/LICENSE -------------------------------------------------------------------------------- /cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/cache.js -------------------------------------------------------------------------------- /example/basic/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/basic/.eleventy.js -------------------------------------------------------------------------------- /example/basic/_includes/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/basic/_includes/template.njk -------------------------------------------------------------------------------- /example/basic/img/test-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/basic/img/test-01.png -------------------------------------------------------------------------------- /example/basic/img/test-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/basic/img/test-02.jpg -------------------------------------------------------------------------------- /example/basic/img/test-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/basic/img/test-03.jpg -------------------------------------------------------------------------------- /example/basic/img/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/basic/img/transparent.png -------------------------------------------------------------------------------- /example/basic/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/basic/index.md -------------------------------------------------------------------------------- /example/basic/nested/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/basic/nested/index.md -------------------------------------------------------------------------------- /example/basic/nested/test-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/basic/nested/test-02.jpg -------------------------------------------------------------------------------- /example/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/basic/package.json -------------------------------------------------------------------------------- /example/custom-selector/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/custom-selector/.eleventy.js -------------------------------------------------------------------------------- /example/custom-selector/_includes/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/custom-selector/_includes/template.njk -------------------------------------------------------------------------------- /example/custom-selector/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/custom-selector/index.md -------------------------------------------------------------------------------- /example/custom-selector/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/custom-selector/package.json -------------------------------------------------------------------------------- /example/eleventy-plugin-local-images/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/eleventy-plugin-local-images/.eleventy.js -------------------------------------------------------------------------------- /example/eleventy-plugin-local-images/_includes/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/eleventy-plugin-local-images/_includes/template.njk -------------------------------------------------------------------------------- /example/eleventy-plugin-local-images/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/eleventy-plugin-local-images/index.md -------------------------------------------------------------------------------- /example/eleventy-plugin-local-images/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/eleventy-plugin-local-images/package.json -------------------------------------------------------------------------------- /example/verlok-vanilla-lazyload/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/verlok-vanilla-lazyload/.eleventy.js -------------------------------------------------------------------------------- /example/verlok-vanilla-lazyload/_includes/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/verlok-vanilla-lazyload/_includes/template.njk -------------------------------------------------------------------------------- /example/verlok-vanilla-lazyload/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/verlok-vanilla-lazyload/index.md -------------------------------------------------------------------------------- /example/verlok-vanilla-lazyload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/example/verlok-vanilla-lazyload/package.json -------------------------------------------------------------------------------- /helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/helpers.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamfiddler/eleventy-plugin-lazyimages/HEAD/readme.md --------------------------------------------------------------------------------