How to detect android increase in javascript

I would like to know if there is a way to detect that a scaling event has occurred. I could achieve this using iOS event binding

$(document).bind('gesturechange',function(event){
     zoomAdjust();
});

Is there such an event for Android devices?

+5
source share
2 answers

There is a big js ready for this called Hammer JS

+3
source

There is another great jQuery plugin called TouchSwipe .

+1
source

All Articles