I'm in the process of developing a basic PWA and am aiming to give it the appearance of a native mobile application, but I'm encountering obstacles with pinch-in functionality.
In my layout.html file (utilizing Flask for the backend), I've included the following code:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
While this setup achieves the desired effect, there are certain images that I'd like users to be able to zoom into. I understand that disabling scalable zoom for the entire mobile page is not recommended, but this is the specific outcome I'm seeking. Is there a CSS/JS solution or alternative method that doesn't involve npm, something as simple as utilizing a CDN would suffice for me.