web-dev-qa-db-ja.com

iPadのレイアウトは、縦から横に回転すると拡大します

"viewport"メタタグ"width=device-width,initial-scale=1.0"に追加し、iPadで横向きモードでページが正常に読み込まれます。縦向きにうまく切り替わり、ページを横向きに戻すとページが拡大されますそれをピンチズームで1スケールに戻す必要があります。

"maximum-scale=1.0, user-scalable=no"を追加することでこれを修正できますが、ページをズームインする機能をユーザーから奪うことなく修正できる方法があるかどうか疑問に思っていました。

何か提案があれば、私はそれらを聞きたいです、
ありがとう!

61
Victor Ionescu

------更新------

これはiOS7ではもう問題ではありません。そして、githubのScott Jehlによるより良い修正があります scottjehl/iOS-Orientationchange-Fix iOS6で動作します。

------元の回答------

Jeremy Keith( @ adactio )は、彼のブログでこれに対する良い解決策を持っています Orientation and scale

マークアップをスケーラブルに保つ

<meta name="viewport" content="width=device-width, initial-scale=1">

次に、このスクリプトでgesturestartまでJavaScriptでスケーラビリティを無効にします。

if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
    var viewportmeta = document.querySelector('meta[name="viewport"]');
    if (viewportmeta) {
        viewportmeta.content = 'width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0';
        document.body.addEventListener('gesturestart', function () {
            viewportmeta.content = 'width=device-width, minimum-scale=0.25, maximum-scale=1.6';
        }, false);
    }
}
72
snobojohan

Scott Jehl は、加速度計を使用して方向の変化を予測する素晴らしいソリューションを思いつきました。このソリューションは非常に応答性が高く、ズームジェスチャを妨げません。

https://github.com/scottjehl/iOS-Orientationchange-Fix

仕組み:この修正は、デバイスの加速度計を聞いて、向きの変化がいつ発生するかを予測することで機能します。方向の変更が差し迫っていると判断した場合、スクリプトはユーザーのズームを無効にし、ズームを無効にして、方向の変更が適切に行われるようにします。スクリプトは、デバイスが直立に近い向きになった後、または向きが変更された後にズームを再び復元します。このようにして、ページの使用中にユーザーのズームが無効になることはありません。

縮小ソース:

/*! 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);
12

うまくいけば、これが役立つでしょう...

<head>

<style type="text/css">
<!--

/*
    I began with the goal to prevent font scaling in Landscape orientation.
    To do this, see: http://stackoverflow.com/questions/2710764/

    Later, I just wanted to magnify font-size for the iPad, leaving
    the iPhone rendering to the css code.  So ...

    (max-device-width:480px) = iphone.css
    (min-device-width:481px) and
        (max-device-width:1024px) and
            (orientation:portrait) = ipad-portrait.css
    (min-device-width:481px) and
        (max-device-width:1024px) and
            (orientation:landscape) = ipad-landscape.css
    (min-device-width:1025px) = ipad-landscape.css

*/

@media only screen and (min-device-width: 481px)
{
    html {
        -webkit-text-size-adjust: 140%;   /* none for no scaling */
    }
}

-->
</style>

</head>
9
John Love

JQuery mobileが使用する修正はこちら

https://github.com/scottjehl/iOS-Orientationchange-Fix

縮小

/*! A fix for the iOS orientationchange zoom bug. Script by @scottjehl, rebound by @wilto.MIT / GPLv2 License.*/(function (a) { function m() { d.setAttribute("content", g), h = !0 } function n() { d.setAttribute("content", f), h = !1 } function o(b) { l = b.accelerationIncludingGravity, i = Math.abs(l.x), j = Math.abs(l.y), k = Math.abs(l.z), (!a.orientation || a.orientation === 180) && (i > 7 || (k > 6 && j < 8 || k < 8 && j > 6) && i > 5) ? h && n() : h || m() } var b = navigator.userAgent; if (!(/iPhone|iPad|iPod/.test(navigator.platform) && /OS [1-5]_[0-9_]* like Mac OS X/i.test(b) && b.indexOf("AppleWebKit") > -1)) return; var c = a.document; if (!c.querySelector) return; var d = c.querySelector("meta[name=viewport]"), e = d && d.getAttribute("content"), f = e + ",maximum-scale=1", g = e + ",maximum-scale=10", h = !0, i, j, k, l; if (!d) return; a.addEventListener("orientationchange", m, !1), a.addEventListener("devicemotion", o, !1) })(this);

完全なソース

/*! A fix for the iOS orientationchange zoom bug.
 Script by @scottjehl, rebound by @wilto.
 MIT / GPLv2 License.
*/
(function(w){

    // This fix addresses an iOS bug, so return early if the UA claims it's something else.
    var ua = navigator.userAgent;
    if( !( /iPhone|iPad|iPod/.test( navigator.platform ) && /OS [1-5]_[0-9_]* like Mac OS X/i.test(ua) && ua.indexOf( "AppleWebKit" ) > -1 ) ){
        return;
    }

    var doc = w.document;

    if( !doc.querySelector ){ return; }

    var meta = doc.querySelector( "meta[name=viewport]" ),
        initialContent = meta && meta.getAttribute( "content" ),
        disabledZoom = initialContent + ",maximum-scale=1",
        enabledZoom = initialContent + ",maximum-scale=10",
        enabled = true,
        x, y, z, aig;

    if( !meta ){ return; }

    function restoreZoom(){
        meta.setAttribute( "content", enabledZoom );
        enabled = true;
    }

    function disableZoom(){
        meta.setAttribute( "content", disabledZoom );
        enabled = false;
    }

    function checkTilt( e ){
        aig = e.accelerationIncludingGravity;
        x = Math.abs( aig.x );
        y = Math.abs( aig.y );
        z = Math.abs( aig.z );

        // If portrait orientation and in one of the danger zones
        if( (!w.orientation || w.orientation === 180) && ( x > 7 || ( ( z > 6 && y < 8 || z < 8 && y > 6 ) && x > 5 ) ) ){
            if( enabled ){
                disableZoom();
            }           
        }
        else if( !enabled ){
            restoreZoom();
        }
    }

    w.addEventListener( "orientationchange", restoreZoom, false );
    w.addEventListener( "devicemotion", checkTilt, false );

})( this );
3
Tom

これは動作します!

 <script >
// BUG orientation portrait/lanscape IOS //
if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
var viewportmeta = document.querySelector('meta[name="viewport"]');
if (viewportmeta) {
    viewportmeta.content = 'width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0';
    document.addEventListener('orientationchange', function () {
        viewportmeta.content = 'width=device-width, minimum-scale=0.25, maximum-scale=1';
    }, false);
  }
}
</script>
1
LaureEtLaurent

スクリプトが機能し、オリエンテーションの変更イベントのように2番目のジェスチャーの微調整をバイパスするには、maxを1.0ではなく1.00099に設定します。

1
Moiz

これはiOS 4のバグのようで、次のJavascriptスニペットで修正できますが、ユーザーがピンチしてズームする機能を無効にします。

https://Gist.github.com/901295/229d163414e22ebb14a6a6ba0b9777118f02e52d

1
Phil

ページを拡大すると言うとき、それはすべての要素ですか、それともテキストのフォントサイズですか?...フォントサイズを修正するには、次を使用できます。

html {
    -webkit-text-size-adjust: 100%;
}
0
DShultz

最初の修正は、次の変更を加えて機能しました。

初期スケールを.8、最小を.25、最大を1.6に変更します。

「メタ」タグを使用する

<meta name="viewport" content="width=device-width, initial-scale=1">


<script ="text/javascript">
if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
    var viewportmeta = document.querySelector('meta[name="viewport"]');
    if (viewportmeta) {
        viewportmeta.content = 'width=device-width, minimum-scale=.25, maximum-scale=1.6, initial-scale=.8';
        document.body.addEventListener('gesturestart', function () {
            viewportmeta.content = 'width=device-width, minimum-scale=0.25, maximum-scale=1.6';
        }, false);
    }
}
0
Gregory Noll

回転時にズームを1に維持するために、ユーザーがピンチしてズームできるようにする別のソリューションを思いつきました。基本的に、ユーザーがズームすると、JavaScriptはビューポートのズームレベルを変更します(ネイティブブラウザーのズーム機能は無効になります)。

こちらをご覧ください: https://stackoverflow.com/a/11878932/436776

0
robocat