如何使用 jQuery 淡入淡出背景图像?
我想让背景图像从一个变为另一个并在过程中淡入淡出。考虑鼠标悬停/鼠标悬停的情况。
如何使用 jQuery 淡入淡出背景图像?
有我需要的 jQuery 插件吗?
I want to have the background image change form one to another and fade in the process. Consider this for a mouseover/mouseout situation.
How do I fade background images using jQuery?
Is there a jQuery plugin that I need?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能有一些可用的东西,但应该很容易从以下部分组合在一起:
fadeIn
和fadeOut
更改元素的不透明度。position:absolute
创建一个 div,并使用position:relative
将两个图像放入其中。这将使图像彼此堆叠There might be something available, but it should be easy to put together from the following parts:
fadeIn
andfadeOut
to change the opacity of an element.position:absolute
and put two images inside it withposition:relative
. This will make the images stack on top of each other