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.
如果我有一个position:fixeddiv - 是否可以使其“不可缩放”,即使网站的其余部分可以缩放?
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. });