如何使用 jQuery 条件语句和事件处理使元素根据浏览器宽度淡出和淡入?
我想检查浏览器宽度,如果超过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,您可以使用
$(window).width()
( doc) 获取浏览器的宽度。使用resize
事件来处理浏览器大小的变化。 (文档)As far as I know, you can use the
$(window).width()
(doc) to get the browser's width. Use theresize
event to handle the changes in browser size. (doc)