gpt4 book ai didi

滚动时的 JavaScript 调整大小事件 - 移动设备

转载 作者:行者123 更新时间:2023-12-03 01:15:00 24 4
gpt4 key购买 nike

我正在尝试制作一个移动网站。我在窗口上绑定(bind)了“调整大小”事件,当移动设备转动时(纵向<->横向),它应该重新排列元素。在 iPhone 和 Samsung Galaxy SII 上,当我向下滚动页面时会触发该事件,这不太好。

我该如何解决这个问题?

最佳答案

缓存视口(viewport)的宽度,如果宽度仍然相同,则在调整大小时返回 false。

一个小的 jQuery 片段:

    var cachedWidth = $(window).width();
$(window).resize(function(){
var newWidth = $(window).width();
if(newWidth !== cachedWidth){
//DO RESIZE HERE
cachedWidth = newWidth;
}
});

关于滚动时的 JavaScript 调整大小事件 - 移动设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9361968/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com