使用maximum-scale
和minimum-scale
停止變焦別因爲那樣你就會失去用戶放大的能力。這的確是一個糟糕的主意,因爲它使您的用戶眼睛不好生氣,你的網站不放大,而其他網站做...
我嘗試超時和各種花式的javascript的,後來我發現這一點: https://github.com/scottjehl/iOS-Orientationchange-Fix
通過此相關的問題:How do I reset the scale/zoom of a web app on an orientation change on the iPhone?
在那個崗位,安德魯Ashbacher張貼由Scott Jehl編寫的代碼的鏈接:
/*! A fix for the iOS orientationchange zoom bug. Script by @scottjehl, rebound by @wilto.MIT License.*/(function(m){if(!(/iPhone|iPad|iPod/.test(navigator.platform)&&navigator.userAgent.indexOf("AppleWebKit")>-1)){return}var l=m.document;if(!l.querySelector){return}var n=l.querySelector("meta[name=viewport]"),a=n&&n.getAttribute("content"),k=a+",maximum-scale=1",d=a+",maximum-scale=10",g=true,j,i,h,c;if(!n){return}function f(){n.setAttribute("content",d);g=true}function b(){n.setAttribute("content",k);g=false}function e(o){c=o.accelerationIncludingGravity;j=Math.abs(c.x);i=Math.abs(c.y);h=Math.abs(c.z);if(!m.orientation&&(j>7||((h>6&&i<8||h<8&&i>6)&&j>5))){if(g){b()}}else{if(!g){f()}}}m.addEventListener("orientationchange",f,false);m.addEventListener("devicemotion",e,false)})(this);
這是一個SOLUT離子很好地包裹在一個IIFE,所以你不必擔心名稱空間問題。
只需將它放入您的腳本(如果您使用jQuery,則不會進入document.ready()
)和中提琴!
它所做的只是在devicemotion
上禁用縮放,表明orientationchange
即將發生。這是我見過的最好的解決方案,因爲它實際上工作並且不禁用縮放。
編輯:這種方法並不總是可靠的,特別是當你拿着一個角度的ipad。此外,我不認爲這個事件可用於第一代ipad
我只是進行了一些初步的測試和以下爲我創造了奇蹟:'' – Bitmanic
初始縮放比例對我也有幫助 - on iPad。 – cbuck12000
這是一個很好的解決方法,我覺得是移動Safari瀏覽器中的一個錯誤。鉗的原始元標記是我通常如何設置我的網站。我懷疑Safari中的某些東西在某些網站中的行爲並不像預期的那樣混亂,最終導致此問題。 – ghostfly