Solución:
puedes hacer esto en la imagen:
var image=document.getElementById('imageId');
image.addEventListener('gesturechange',function(e){
if(e.scale>1){
//zoom in
//increase the size of image according to the e.scale
}
else if(e.scale<1){
//zoom out
//decrease the size of image according to the e.scale
}
});
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)