为所有未聚焦的 LI 添加透明覆盖层
我在 LI 中有产品列表,我需要做的是,当我将鼠标悬停在某个产品上时,我需要所有其他 LI(产品)对其进行轻微覆盖,因此悬停在其上的产品更加突出。
任何帮助将不胜感激。
I have list of products within an LI what I need to do is when I hover over a product I need all other LI (Products) to get a slight overlay to them, so the product that is hovered over is more prominant.
Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许只需调整非悬停的 li 的不透明度并将悬停的 li 的不透明度设置为 1 即可?
在 jsFiddle 上查看:http://jsfiddle.net/TXfKG/
更新:就像@amustil提到的,如果您关心IE6,您可以使用另一个属性添加对它的支持:
filter: alpha(opacity=50);
Maybe just adjust the opacity on the non-hovered
li
s and set the opacity to1
for the hoveredli
?See it on jsFiddle: http://jsfiddle.net/TXfKG/
UPDATE: Like @amustill mentioned, if you care about IE6, you can add support for it with another property:
filter: alpha(opacity=50);
你可以这样做jsFiddle:
HTML:
CSS:
jQuery:
You could do something like this jsFiddle:
HTML:
CSS:
jQuery:
这是一个纯 CSS 解决方案,带有针对 IE6 的 JS 修复。
http://jsbin.com/asico4/3
编辑:更新了链接,留下了拼写错误。
Here is a CSS-only solution, with a JS fix for IE6.
http://jsbin.com/asico4/3
Edit: Updated link, left in a typo.