Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
div を使用してposition:fixedいる場合、ウェブサイトの残りの部分をズームできる場合でも、「ズーム不可」にすることはできますか?
position:fixed
高さと幅を常に同じサイズでウェブサイトの下部に固定したい(コンテンツは同じままで、ウェブサイトの残りの部分でズームされません)。
少なくともあなたが望むほど単純ではありません。これがうまくいくかもしれないアプローチです。次のように、イベントをウィンドウの ongesturechange にバインドします。
$(window).bind("gesturechange", function(event) { var scale = event.originalEvent.scale; //Now resize your element with javascript based on the value of scale. });