Friday, 15 April 2011

html - Disable pinch to zoom in windows 8 cordova app -



html - Disable pinch to zoom in windows 8 cordova app -

having issues cordova continuing pinch zoom on windows 8. here's meta tag i'm using should disable according documentation:

<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />

any thought i'm missing?

try ::

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" /> * { -webkit-tap-highlight-color: rgba(0,0,0,0); /* create transparent link selection, adjust lastly value opacity 0 1.0 */ } body { -webkit-touch-callout: none; /* prevent callout re-create image, etc when tap hold */ -webkit-text-size-adjust: none; /* prevent webkit resizing text fit */ -webkit-user-select: none; /* prevent re-create paste, allow, alter 'none' 'text' */ /*background-color:#e4e4e4;*/ }

html cordova windows-8

No comments:

Post a Comment