react-quick-pinch-zoom-ssr
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

react-quick-pinch-zoom-ssr

This repo is forked from react-quick-pinch-zoom, just added some extra code to make it workable on server side.

react-quick-pinch-zoom on npm npm downloads react-quick-pinch-zoom bundle size CI status

A react component that lets you zooming and dragging on any DOM element using multi-touch gestures on mobile devices and mouse-events\wheel on desktop devices. Based on this module manuelstofer/pinchzoom

Component features:

  • 🔮 Simple. Easy to use;
  • 🍎 It works with mobile touch gestures and desktop mouse events;
  • ⚡ Fast, 60 FPS on mobile devices.

Links

Install

yarn add react-quick-pinch-zoom

Screenshots

Video...

Usage

import React, { useCallback, useRef } from "react";
import QuickPinchZoom, { make3dTransformValue } from "react-quick-pinch-zoom";
 
const IMG_URL =
  "https://user-images.githubusercontent.com/4661784/" +
  "56037265-88219f00-5d37-11e9-95ef-9cb24be0190e.png";
 
export const App = () => {
  const imgRef = useRef();
  const onUpdate = useCallback(({ x, y, scale }) => {
    const { current: img } = imgRef;
 
    if (img) {
      const value = make3dTransformValue({ x, y, scale });
 
      img.style.setProperty("transform", value);
    }
  }, []);
 
  return (
    <QuickPinchZoom onUpdate={onUpdate}>
      <img ref={imgRef} src={IMG_URL} />
    </QuickPinchZoom>
  );
};

License

MIT © retyui

Package Sidebar

Install

npm i react-quick-pinch-zoom-ssr

Weekly Downloads

94

Version

3.0.0

License

MIT

Unpacked Size

66.5 kB

Total Files

21

Last publish

Collaborators

  • zerostone