jackmoore / wheelzoom

A small script for zooming IMG elements with the mousewheel/trackpad.
http://www.jacklmoore.com/wheelzoom
MIT License
342 stars 95 forks source link

Added new feature 'Multiplier' (zoom by click) #40

Open mafftor opened 5 years ago

mafftor commented 5 years ago

I have added a feature which works by click. Click on image and zoom it easy.

Initialize in this way if you want to disable the multiplier feature

wheelzoom(document.querySelector('img.zoom'), {maxMultiplier: 0});

or set the max of depth

wheelzoom(document.querySelector('img.zoom'), {maxMultiplier: 5});