使用 jQuery 更改悬停时的背景
我试图弄清楚一个简单的 jQuery 代码是什么,它可以在悬停时淡入 rgba 背景颜色,然后在将鼠标移离 div 时淡出。
我说“rgba”的原因是因为它需要 70% 不透明的黑色,但如果可以用 jQuery 自己的不透明度来完成,那就太酷了。
一个完美的例子是 http://dalhov.se ,除了他们使用了我很难研究的更复杂的方法。
谢谢, 韦德
I'm trying to figure what a simple jQuery code is to fade in an rgba background colour on hover and then fade out when you move your mouse off the div.
The reason I say "rgba" is because it needs to be 70% opaque black but if that can be done with jQuery's own opacity, then that's cool.
A perfect example is http://dalhov.se except they use a more complicated method that I'm having a hard time studying.
Thanks,
Wade
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在这里
你
需要包含 jquery UI或颜色插件
查看此帖子了解更多信息
here you are
http://jsfiddle.net/samccone/EpmKC/
you need to include jquery UI or the color plugin
Check out this thread for more info
编辑:您所需要的只是 jQuery 的 fadeTo 函数...
演示: http://jsfiddle.net/wdm954/ 5Hef6/5/
我相信这与您的示例网址最相似。
在此演示中,DIV 是分层的。如果您降低包含内容的 DIV 的不透明度,您的不透明度也会影响内容。
EDIT: All you need is jQuery's fadeTo function...
Demo: http://jsfiddle.net/wdm954/5Hef6/5/
I believe this is most similar to your example url.
In this demo the DIVs are layered. If you drop the opacity of a DIV that contains content your opacity will effect the content also.
该死的,先发制人,但无论如何我都会把我的扔掉
http://jsfiddle.net/mazzzzz/Wfech/
Darn beat me to the punch, I'll throw mine up anyway though
http://jsfiddle.net/mazzzzz/Wfech/
我认为您使用下面的代码而不使用 JQuery。
I think you use below code without JQuery.