Socket
Socket
Sign inDemoInstall

@mapaxe/ngx-pinch-zoom

Package Overview
Dependencies
5
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @mapaxe/ngx-pinch-zoom

Pinch zoom component for Angular 16.


Version published
Weekly downloads
11
decreased by-26.67%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Pinch zoom for Angular

Note 2

This Project has been forked to update:

  • Add a listener to detect zoom changes (onZoomChange)="zoomChange($event) demo
  • Adds functionality to modify the zoom state programmatically demo
  • Adds functionality to modify the zoom state programmatically at a specific point (in this example the click) demo

Note 1

This Project has been forked to update to the newest Angular 16 Version.

The module provides opportunities for image zooming in, zooming out and positioning with use of gestures on a touch screen.

Live demos and source code samples can be found on home page.

🔬️ Help make Pinch zoom better by answering a few questions.

Installation

Install the npm package.

npm i @meddv/ngx-pinch-zoom

Import module:

import { PinchZoomModule } from '@meddv/ngx-pinch-zoom';

@NgModule({
    imports: [ PinchZoomModule ]
})

Usage

For use, put your image inside the <pinch-zoom> container. Please, pay attention to the parameters of your viewport metatag. If you use Pinch Zoom, it is required to limit zooming of a web-page, by entering the following parameters: <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">.

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

Properties

nametypedefaultdescription
transition-durationnumber200Defines the speed of the animation of positioning and transforming.
limit-zoomnumber, "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
auto-zoom-outbooleanfalseAutomatic restoration of the original size of an image after its zooming in by two fingers.
double-tapbooleantrueZooming 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.
minPanScalenumber1.0001Minimum zoom at which panning is enabled.
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.
stepZoomFactornumber0.2Zoom factor when zoomed in/out with external control and zoom in with mouse click.
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.
draggableImagebooleanfalseSets the attribute draggable to the <img> tag.

Outputs

namedescription
(onZoomChange)Returns a ZoomEvent objet on every change of state
interface ZoomEvent {
    scale: number;
    moveX: number;
    moveY: number;
}

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.
zoomIn()Allows zooming in a step with an external control, requires a value defined in the stepZoomFactor property
resetZoom()Unsubscribe from mouse events and touches, as well as remove added styles from the DOM tree.
zoomOut()Allows zooming out a step with an external control, requires a value defined in the stepZoomFactor property
zoomPoint(newPoint: MouseZoomPoint)Allows zooming in a step with an external control in a specific point, requires a value defined in the stepZoomFactor property
interface MouseZoomPoint{
    clientX: number;
    clientY: number;
}

See the full documentation and examples on the home page.

Author services

Are you interested in this library but lacks features? Write to the author, he can do it for you.

Sponsors

Tested using Browserstack

Browserstack

Keywords

FAQs

Last updated on 19 Oct 2023

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