gpt4 book ai didi

jquery - 移动滚动触发 jQuery 调整大小事件 - (仅在使用移动设备时触发,在浏览器视口(viewport)中可以)

转载 作者:行者123 更新时间:2023-12-01 06:43:56 27 4
gpt4 key购买 nike

This is my code here it works fine on browser but not on mobile, am not that expert in jQuery so if there is any mistake, do forgive me.ty

var width = $(window).width(), height = $(window).height();
$(window).on('resize', function() {

if($(window).width() != width && $(window).height() != height)
{
var width = $(window).width(), height = $(window).height();

//do something here;
}
});

最佳答案

我在StackOverflow本身中找到了答案link of the solutionsidonaldson 的回答帮助我解决了我的问题。ty

这是代码

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

关于jquery - 移动滚动触发 jQuery 调整大小事件 - (仅在使用移动设备时触发,在浏览器视口(viewport)中可以),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42626139/

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