如何使用 jQuery 条件语句和事件处理使元素根据浏览器宽度淡出和淡入?

发布于 2024-11-05 14:41:11 字数 143 浏览 0 评论 0原文

我想检查浏览器宽度,如果超过 850,则淡入 div。

然后,每当调整浏览器大小时,如果浏览器宽度小于 850,我想淡出该 div,如果浏览器宽度大于 850,我想再次淡入该 div。

提前感谢您的帮助!

迪米特里·沃龙佐夫

I want to check the browser width, and if it's more than 850, to fade in a div.

Then whenever the browser is resized, I want to fade out that div if the browser width is less than 850, and fade it in again if the browser width is more than 850.

Thank you in advance for helping out with this!

Dimitri Vorontzov

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风也等你 2024-11-12 14:41:11

据我所知,您可以使用 $(window).width() ( doc) 获取浏览器的宽度。使用resize事件来处理浏览器大小的变化。 (文档)

当浏览器窗口的大小发生变化时,resize 事件会发送到窗口元素:

$(window).resize(function() {
    if ($(window).width() > 850) {
         // do something 
    } else {
         // do something else
    }
});

As far as I know, you can use the $(window).width() (doc) to get the browser's width. Use the resize event to handle the changes in browser size. (doc)

The resize event is sent to the window element when the size of the browser window changes:

$(window).resize(function() {
    if ($(window).width() > 850) {
         // do something 
    } else {
         // do something else
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文