├── .gitignore ├── .npmignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── examples └── src │ ├── index.html │ └── index.js ├── package.json ├── src ├── PinchZoomPan.js ├── StateDebugView.js ├── Utils.js ├── ZoomButtons.js └── styles.css └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/README.md -------------------------------------------------------------------------------- /examples/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/examples/src/index.html -------------------------------------------------------------------------------- /examples/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/examples/src/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/package.json -------------------------------------------------------------------------------- /src/PinchZoomPan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/src/PinchZoomPan.js -------------------------------------------------------------------------------- /src/StateDebugView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/src/StateDebugView.js -------------------------------------------------------------------------------- /src/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/src/Utils.js -------------------------------------------------------------------------------- /src/ZoomButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/src/ZoomButtons.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/src/styles.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradstiff/react-responsive-pinch-zoom-pan/HEAD/webpack.config.js --------------------------------------------------------------------------------