答えて

0

それはハックですが、それは働いて、余分な最小ズームは、ユーザがより0.87をズームアウトした場合ので、我々はチェックの周り0.85通常のサイズのである:

window.addEventListener ('resize', function() { 
    if (document.documentElement.clientHeight/window.innerHeight <= 0.87){ 
     // this will run more than once while the user 
     // is zooming out close to the maximum level 
    } 
}, false); 

ズームが無効になっているとき、それは動作しません。 (モバイルウェブサイト)。

関連する問題