Disable pinch to zoom in IE10

强颜欢笑 提交于 2019-12-04 23:06:48
cmplieger

Found the solution: -ms-content-zooming: none | zoom

For me this CSS code work

html {

      -ms-content-zooming: none;
      -ms-touch-action: pan-x pan-y;

}

I am using this code for disabling pinch and double tap zoom on windows tablet, I.E 10

Try to add this in your Head area:

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!