├── .babelrc ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── demo └── images │ ├── animation.gif │ ├── intro.gif │ ├── loader.gif │ ├── placeholder-custom.gif │ ├── placeholder.gif │ └── show-loader.gif ├── icon.png ├── jest.config.js ├── package.json ├── src ├── ReactImageAppear.js ├── constants.js └── helpers.js ├── tests.setup.js └── tests ├── ReactImageAppear.test.js └── __snapshots__ └── ReactImageAppear.test.js.snap /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/README.md -------------------------------------------------------------------------------- /demo/images/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/demo/images/animation.gif -------------------------------------------------------------------------------- /demo/images/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/demo/images/intro.gif -------------------------------------------------------------------------------- /demo/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/demo/images/loader.gif -------------------------------------------------------------------------------- /demo/images/placeholder-custom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/demo/images/placeholder-custom.gif -------------------------------------------------------------------------------- /demo/images/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/demo/images/placeholder.gif -------------------------------------------------------------------------------- /demo/images/show-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/demo/images/show-loader.gif -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/icon.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/package.json -------------------------------------------------------------------------------- /src/ReactImageAppear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/src/ReactImageAppear.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/src/helpers.js -------------------------------------------------------------------------------- /tests.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/tests.setup.js -------------------------------------------------------------------------------- /tests/ReactImageAppear.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/tests/ReactImageAppear.test.js -------------------------------------------------------------------------------- /tests/__snapshots__/ReactImageAppear.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunMichaelDsouza/react-image-appear/HEAD/tests/__snapshots__/ReactImageAppear.test.js.snap --------------------------------------------------------------------------------