为所有未聚焦的 LI 添加透明覆盖层

发布于 2024-11-02 06:22:50 字数 99 浏览 2 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(3

樱娆 2024-11-09 06:22:50

也许只需调整非悬停的 li 的不透明度并将悬停的 li 的不透明度设置为 1 即可?

ul:hover li {
  opacity: .8;
}
ul:hover li:hover {
  opacity: 1;
}

在 jsFiddle 上查看:http://jsfiddle.net/TXfKG/

更新:就像@amustil提到的,如果您关心IE6,您可以使用另一个属性添加对它的支持:filter: alpha(opacity=50);

Maybe just adjust the opacity on the non-hovered lis and set the opacity to 1 for the hovered li?

ul:hover li {
  opacity: .8;
}
ul:hover li:hover {
  opacity: 1;
}

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);

落花随流水 2024-11-09 06:22:50

你可以这样做jsFiddle

HTML:

<ul>
    <li>list item 1</li>
    <li>list item 2</li>
    <li>list item 3</li>
    <li>list item 4</li>
</ul>

CSS:

li { padding: 10px; background: #ccc; border: solid 1px black; cursor: pointer; }

jQuery:

var $listItems = $("ul li");

$listItems.hover(function() {

    $listItems.not(this).css("opacity", "0.5");

}, function() {

    $listItems.not(this).css("opacity", "1.0");    

});

You could do something like this jsFiddle:

HTML:

<ul>
    <li>list item 1</li>
    <li>list item 2</li>
    <li>list item 3</li>
    <li>list item 4</li>
</ul>

CSS:

li { padding: 10px; background: #ccc; border: solid 1px black; cursor: pointer; }

jQuery:

var $listItems = $("ul li");

$listItems.hover(function() {

    $listItems.not(this).css("opacity", "0.5");

}, function() {

    $listItems.not(this).css("opacity", "1.0");    

});
魔法少女 2024-11-09 06:22:50

这是一个纯 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文