├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── gulpfile.js ├── package.json ├── rimg.js ├── rimg.min.js ├── rimg.min.js.gz └── test ├── examples ├── add.html ├── add.js ├── added.js ├── async.html ├── async.js ├── background-image.html ├── background-image.js ├── complex.html ├── complex.js ├── disabled.html ├── disabled.js ├── images │ ├── image-huge-retina.jpg │ ├── image-huge.jpg │ ├── image-large-retina.jpg │ ├── image-large.jpg │ ├── image-medium-retina.jpg │ ├── image-medium.jpg │ ├── image-regular-retina.jpg │ ├── image-regular.jpg │ ├── image-small-retina.jpg │ ├── image-small.jpg │ ├── image-tiny-retina.jpg │ ├── image-tiny.jpg │ ├── image.svg │ ├── image2-huge-retina.jpg │ ├── image2-huge.jpg │ ├── image2-large-retina.jpg │ ├── image2-large.jpg │ ├── image2-medium-retina.jpg │ ├── image2-medium.jpg │ ├── image2-regular-retina.jpg │ ├── image2-regular.jpg │ ├── image2-small-retina.jpg │ ├── image2-small.jpg │ ├── image2-tiny-retina.jpg │ └── image2-tiny.jpg ├── index.html ├── js │ └── rimg.min.js ├── lazyloading.html ├── lazyloading.js ├── manual.html ├── manual.js ├── many.html ├── modified.html ├── modified.js ├── nolazyloading.html ├── nolazyloading.js ├── simple.html ├── simple.js ├── svg.html └── svg.js ├── package.json ├── pre.js └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/package.json -------------------------------------------------------------------------------- /rimg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/rimg.js -------------------------------------------------------------------------------- /rimg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/rimg.min.js -------------------------------------------------------------------------------- /rimg.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/rimg.min.js.gz -------------------------------------------------------------------------------- /test/examples/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/add.html -------------------------------------------------------------------------------- /test/examples/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/add.js -------------------------------------------------------------------------------- /test/examples/added.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/added.js -------------------------------------------------------------------------------- /test/examples/async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/async.html -------------------------------------------------------------------------------- /test/examples/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/async.js -------------------------------------------------------------------------------- /test/examples/background-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/background-image.html -------------------------------------------------------------------------------- /test/examples/background-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/background-image.js -------------------------------------------------------------------------------- /test/examples/complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/complex.html -------------------------------------------------------------------------------- /test/examples/complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/complex.js -------------------------------------------------------------------------------- /test/examples/disabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/disabled.html -------------------------------------------------------------------------------- /test/examples/disabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/disabled.js -------------------------------------------------------------------------------- /test/examples/images/image-huge-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-huge-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image-huge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-huge.jpg -------------------------------------------------------------------------------- /test/examples/images/image-large-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-large-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-large.jpg -------------------------------------------------------------------------------- /test/examples/images/image-medium-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-medium-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-medium.jpg -------------------------------------------------------------------------------- /test/examples/images/image-regular-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-regular-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image-regular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-regular.jpg -------------------------------------------------------------------------------- /test/examples/images/image-small-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-small-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-small.jpg -------------------------------------------------------------------------------- /test/examples/images/image-tiny-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-tiny-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image-tiny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image-tiny.jpg -------------------------------------------------------------------------------- /test/examples/images/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image.svg -------------------------------------------------------------------------------- /test/examples/images/image2-huge-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-huge-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-huge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-huge.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-large-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-large-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-large.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-medium-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-medium-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-medium.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-regular-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-regular-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-regular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-regular.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-small-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-small-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-small.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-tiny-retina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-tiny-retina.jpg -------------------------------------------------------------------------------- /test/examples/images/image2-tiny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/images/image2-tiny.jpg -------------------------------------------------------------------------------- /test/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/index.html -------------------------------------------------------------------------------- /test/examples/js/rimg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/js/rimg.min.js -------------------------------------------------------------------------------- /test/examples/lazyloading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/lazyloading.html -------------------------------------------------------------------------------- /test/examples/lazyloading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/lazyloading.js -------------------------------------------------------------------------------- /test/examples/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/manual.html -------------------------------------------------------------------------------- /test/examples/manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/manual.js -------------------------------------------------------------------------------- /test/examples/many.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/many.html -------------------------------------------------------------------------------- /test/examples/modified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/modified.html -------------------------------------------------------------------------------- /test/examples/modified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/modified.js -------------------------------------------------------------------------------- /test/examples/nolazyloading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/nolazyloading.html -------------------------------------------------------------------------------- /test/examples/nolazyloading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/nolazyloading.js -------------------------------------------------------------------------------- /test/examples/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/simple.html -------------------------------------------------------------------------------- /test/examples/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/simple.js -------------------------------------------------------------------------------- /test/examples/svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/svg.html -------------------------------------------------------------------------------- /test/examples/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/examples/svg.js -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/package.json -------------------------------------------------------------------------------- /test/pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/pre.js -------------------------------------------------------------------------------- /test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyvandijk/rimg/HEAD/test/server.js --------------------------------------------------------------------------------