igorlino / elevatezoom-plus

Enhanced elevateZoom - A jQuery image zoom plugin
http://igorlino.github.io/elevatezoom-plus/
MIT License
162 stars 77 forks source link

scrollZoom - Mousewheels Inverted? #82

Open coder4589 opened 7 years ago

coder4589 commented 7 years ago

When I scroll up, Image Zoom out!

When I scroll down, Image Zoom In!

How can I invert that?

coder4589 commented 7 years ago

I inverted the mouse scroll by changing if (theEvent / 120 > 0) { to if (theEvent / 120 < 0) {

It seems to work with no problems! Now WheelUp = ZoomIn / WheelDown = ZoomOut!

If there is a better alternative, please let me know! Thanks!

Mouse Inverted Demo: https://coder4589.github.io/elevatezoom-plus-coder4589/scroll-inverted.html Html Code: https://github.com/coder4589/elevatezoom-plus-coder4589/blob/master/scroll-inverted.html

jishnuvp commented 5 years ago

still there is no change...