android - Zoom issue on mobile device though that works fine on desktop -
my front-end works bootrstrap3.
firstable had responsive issues on mobile device fixed adding meta below:
<meta name="viewport" content="width=device-width, initial-scale=1">
that works have still strange issue. of times, landing on page on mobile device, zoom lower 100%.
actually, note when issue happening, whole page displayed on viewport, zoom adapted total height , width of page.
if has solution fix issue great.
try adding following head-tag:
<meta name="viewport" content="width=device-width, user-scalable=no" />
mobile safari in ios 4.2.
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
we disabling zoom on mobile web based application. can't zoom in native ios apps , it's not required in our web application. if site or app mobile optimised users won't need zoom. there use cases disabling zoom. doesn't have 1 way or other.
Comments
Post a Comment