gpt4 book ai didi

jquery - jQuery 中的放大/缩小事件

转载 作者:行者123 更新时间:2023-11-30 23:57:12 25 4
gpt4 key购买 nike

我只是想要一个功能,在放大窗口上显示警报,比如“你放大了”,在缩小窗口上显示警报,比如“你缩小了”,我搜索了这个功能很多时间,但每次搜索我都会得到就像“放大窗口事件”一样,这不是我想要的。

最佳答案

srceen.width is fixed value but where as window.innerWidth value will change as per the zoom effect. please try the below code:

 $(window).resize(function() {
if(screen.width == window.innerWidth){
alert("you are on normal page with 100% zoom");
} else if(screen.width > window.innerWidth){
alert("you have zoomed in the page i.e more than 100%");
} else {
alert("you have zoomed out i.e less than 100%")
}
});

关于jquery - jQuery 中的放大/缩小事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16677859/

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