Skip to content

Instantly share code, notes, and snippets.

View omvaishnav's full-sized avatar
⌨️
<coding>

Om Prakash Swami omvaishnav

⌨️
<coding>
  • BlueStone.com
  • Bengaluru
View GitHub Profile
@omvaishnav
omvaishnav / PinchZoomPan.js
Created April 19, 2018 12:34 — forked from iammerrick/PinchZoomPan.js
React Pinch + Zoom + Pan
import React from 'react';
const MIN_SCALE = 1;
const MAX_SCALE = 4;
const SETTLE_RANGE = 0.001;
const ADDITIONAL_LIMIT = 0.2;
const DOUBLE_TAP_THRESHOLD = 300;
const ANIMATION_SPEED = 0.04;
const RESET_ANIMATION_SPEED = 0.08;
const INITIAL_X = 0;