I'm currently working on a web responsive website and having an issue zooming in and out on Android devices.
Even though it's a responsive app I want to support the pinch-in and out function in order to zoom in some images.
In the nuxt.js config file's meta, there is
{
name: 'viewport',
content: 'width=device-width,
initial-scale=1,
minimum-scale=1,
user-scalable=no,
viewport-fit=cover'
}
and after did some research, I found the user-scalable=no
makes disable the zooming in and out.
When I test on iOS devices and used Safari and Chrome, I can zoom in and out an image with pinch in/out action (which is perfect but not sure why...), however, I was not able to zoom in and out when I test on Android devices.
So my questions are
- why I can zoom in and out on iOS devices and cannot Android devices with the code above
- how can I enable zoom in and out on Android devices.