Socket
Socket
Sign inDemoInstall

@wizzn/vue-pinch-zoom

Package Overview
Dependencies
24
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @wizzn/vue-pinch-zoom

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


Version published
Weekly downloads
19
decreased by-44.12%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Pinch zoom for Vue

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

Installation

Install the npm package.

npm i @wizzn/vue-pinch-zoom

Import module:

import PinchZoom from '@wizzn/vue-pinch-zoom';

Vue.component('pinch-zoom', PinchZoom);

Usage

Put an image inside the <pinch-zoom> container, its content will be scaled with a pinch zoom.

<pinch-zoom>
    <img src="..." /> 
</pinch-zoom>

Properties

nametypedefaultdescription
transitionDurationnumber200Defines the speed of the animation of positioning and transforming.
limitZoomnumber, "original image size""original image size"Limit the maximum available scale. By default, the maximum scale is calculated based on the original image size.
minScalenumber0Limit the minimum acceptable scale. With a value of 1, it is recommended to use this parameter with limitPan
autoZoomOutbooleanfalseAutomatic restoration of the original size of an image after its zooming in by two fingers.
doubleTapbooleantrueZooming in and zooming out of an image, depending on its current condition, with double tap.
disabledbooleanfalseDisable zoom.
disablePanbooleanfalseTurn 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.
zoomControlScalenumber1Zoom factor when using zoom controls.
backgroundColorstring"rgba(0,0,0,0.85)"The background color of the container.
limitPanbooleanfalseStop 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.
wheelbooleantrueScale with the mouse wheel.
wheelZoomFactornumber0.2Zoom factor when zoomed in with the mouse wheel.
autoHeightbooleanfalseCalculate 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.
draggableImagebooleantrueSets the attribute draggable to the <img> tag.

Methods

namedescription
toggleZoom()Image zooming in and out, depending on its current state.
destroy()Unsubscribe from mouse events and touches, as well as remove added styles from the DOM tree.

FAQs

Last updated on 23 Mar 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc