├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── app.html ├── gulpfile.js ├── images ├── cat1.jpg ├── cat2.jpg ├── cat3.jpg └── cat4.jpg ├── package.json └── src ├── app.js └── load-image.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "jsxPragma": "element" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/README.md -------------------------------------------------------------------------------- /app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/app.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/cat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/images/cat1.jpg -------------------------------------------------------------------------------- /images/cat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/images/cat2.jpg -------------------------------------------------------------------------------- /images/cat3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/images/cat3.jpg -------------------------------------------------------------------------------- /images/cat4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/images/cat4.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/package.json -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/src/app.js -------------------------------------------------------------------------------- /src/load-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpj/fpjs8/HEAD/src/load-image.js --------------------------------------------------------------------------------