├── .babelrc ├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── doczrc.js ├── package.json ├── postcss.config.js ├── rollup.config.js ├── src ├── Zoom.mdx ├── Zoom.test.js ├── index.js └── style.css └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | *.css 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/README.md -------------------------------------------------------------------------------- /doczrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/doczrc.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/postcss.config.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/Zoom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/src/Zoom.mdx -------------------------------------------------------------------------------- /src/Zoom.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/src/Zoom.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- 1 | .zoomImg { 2 | will-change: transform; 3 | } 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoNero/react-img-zoom/HEAD/yarn.lock --------------------------------------------------------------------------------