disable zoom in chrome under w7

0

I have an application developed in cakephp, which runs in chrome in kiosk mode, it's like a product catalog. We changed the screen of touchscreen because it had wear and problems, and although the new one is by infrared, much better, I lost or I changed 2 important functionalities. 1) The zoom of the chrome generates several complications, some way to cancel that function? 2) Is there a slide that is encrypted and before it worked, with the new touch stopped moving with your finger, someone with similar experience that gives me some idea of how to improve it without touching the code?

    
asked by look68 23.02.2017 в 14:31
source

1 answer

1

This may be useful just by changing the css, insert an initial zoom

body, html{
  zoom: 100%;
}

You can also try to put a overflow: auto on the div that contains the encrypted slide

A part has the meta tag to disable the zoom or scale the page to the mobile

<meta content='width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;' name='viewport' />
    
answered by 24.02.2017 / 12:36
source