1.2.992 • Published 6 years ago

angular-nd-image-zoom v1.2.992

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

angular2-image-zoom

Angular 2.x.x Compatible

Installation

To install this library, run:

$ npm install angular-image-zoom --save

Examples

First, import the ImageZoom Module

import {ImageZoomModule} from 'angular-image-zoom';

Then, add ImageZoom to your modules import array

@NgModule({
    imports : [CommonModule, ImageZoomModule, ...],
})

Then just add the imageZoom tag to your img element

<img [imageZoom]="zoomedImageSrc" [src]="smallImageSrc" [style.width.px]="width" [style.height.px]="height">

Options

NameTypeDefaultDescription
imageZoomstringnullLink to larger src image
allowZoombooleantrueWhether or not zooming is enabled
clickToZoombooleanfalseForce a user to click before zooming begins, click again to stop zooming
scrollZoombooleantrueAllow mousewheel to change zoom level
windowPositionnumber1Position of zoom window. (1-16)
lensStylestring'WINDOW'Type of zoom ('LENS', 'WINDOW')
lensWidthnumber300Width of zoom lens
lensHeightnumber300Height of zoom lens
lensBordernumber2Size of lens border (in pixels)
delaynumber100Delay before zoom lens appears (in milliseconds)
minZoomLevelnumber.2TODO
maxZoomLevelnumberauto-calculatedTODO
zoomLevelIncrementnumber.1Size of each change in zoom level while scrolling

This library is a work in progress and any issues/pull-requests are welcomed!

Development

To generate all * }.js, *.js.map and *.d.ts files:

$ npm run tsc

License

MIT