npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-ivy-pinch-zoom

v1.0.2

Published

React library for images scaling and dragging with touch screen gestures

Downloads

5

Readme

Pinch zoom for React

React library for images scaling and dragging with touch screen gestures.

Live demo can be found on home page.

Installation

Install the npm package.

npm i react-ivy-pinch-zoom

Usage

import React, { Component } from 'react'

import { PinchZoom } from 'react-ivy-pinch-zoom'
import 'react-ivy-pinch-zoom/dist/pinch-zoom.css'

class Example extends Component {
  render() {
    return <PinchZoom imgPath="path_to_image" />
  }
}

Properties

| name | type | default | description | |------------------|-----------------|---------|---------------------------------------------| | transitionDuration | number | 200 | Defines the speed of the animation of positioning and transforming.| | limitZoom | number, "original image size" | "original image size" | Limit the maximum available scale. By default, the maximum scale is calculated based on the original image size. | | minScale | number | 0 | Limit the minimum acceptable scale. With a value of 1, it is recommended to use this parameter with limitPan | | autoZoomOut | boolean | false | Automatic restoration of the original size of an image after its zooming in by two fingers.| | doubleTap | boolean | true | Zooming in and zooming out of an image, depending on its current condition, with double tap.| | disabled | boolean | false | Disable zoom. | | disablePan | boolean | false | Turn off panning with one finger. | | overflow | "hidden", "visible" | "hidden" | hidden - the overflow is clipped, and the rest of the content will be invisible. visible - the overflow is not clipped. The content renders outside the element's box. | | disableZoomControl | "disable", "never", "auto" | "auto" | Disable zoom controls. auto - Disable zoom controls on touch screen devices. never - show zoom controls on all devices. disable - disable zoom controls on all devices. | | zoomControlScale | number | 1 | Zoom factor when using zoom controls. | | backgroundColor | string | "rgba(0,0,0,0.85)" | The background color of the container. | | limitPan | boolean | false | Stop panning when the edge of the image reaches the edge of the screen. | | listeners | "auto", "mouse and touch" | "mouse and touch" | By default, subscriptions are made for mouse and touch screen events. The value auto means that the subscription will be only for touch events or only for mouse events, depending on the type of screen. | | wheel | boolean | true | Scale with the mouse wheel. | | wheelZoomFactor | number | 0.2 | Zoom factor when zoomed in with the mouse wheel. | | autoHeight | boolean | false | Calculate the height of the container based on the width and height attributes of the image. By default, the width of the container is 100%, and the height is determined after the image information is loaded - this may cause a delay in determining the height of the container. If you want the container to initially have dimensions corresponding to the dimensions of the image, then specify the attributes width and height for the <img> tag. When setting the property value to true, a subscription to the window resize listener will be created. | | draggableImage | boolean | true | Sets the attribute draggable to the <img> tag. |

License

Apache License 2.0 © drozhzhin-n-e