112

每当鼠标悬停在仅使用 CSS 的图像上时,我都会尝试向图像添加透明的黑色叠加层。这可能吗?我试过这个:

http://jsfiddle.net/Zf5am/565/

但我无法让 div 显示出来。

<div class="image">
    <img src="http://www.newyorker.com/online/blogs/photobooth/NASAEarth-01.jpg" alt="" />
    <div class="overlay" />
</div> 

.image {
  position: relative;
  border: 1px solid black;
  width: 200px;
  height: 200px;
}
.image img {
  max-width: 100%;
  max-height: 100%;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  background-color: red;
  z-index: 200;
}
.overlay:hover {
  display: block;
}
4

8 回答 8

234

我建议使用伪元素代替覆盖元素。因为伪元素不能添加到封闭img的元素上,你仍然需要包装img元素。

现场示例-带有文本的示例

<div class="image">
    <img src="http://i.stack.imgur.com/Sjsbh.jpg" alt="" />
</div>

至于CSS,在元素上设置可选尺寸,并相对定位。.image如果您的目标是响应式图像,只需省略尺寸,这仍然有效(示例)。值得注意的是,尺寸必须在父元素上,而不是img元素本身,请参阅.

.image {
    position: relative;
    width: 400px;
    height: 400px;
}

给子元素一个父img元素的宽度并添加以修复默认基线对齐问题。100%vertical-align:top

.image img {
    width: 100%;
    vertical-align: top;
}

至于伪元素,设置一个内容值并相对于.image元素绝对定位。宽度/高度100%将确保这适用于不同的img尺寸。如果要转换元素,请设置不透明度0并添加转换属性/值。

.image:after {
    content: '\A';
    position: absolute;
    width: 100%; height:100%;
    top:0; left:0;
    background:rgba(0,0,0,0.6);
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
}

1将鼠标悬停在伪元素上时使用不透明度以促进过渡:

.image:hover:after {
    opacity: 1;
}

在这里结束结果


如果要在悬停时添加文本:

对于最简单的方法,只需将文本添加为​​伪元素的content值:

这里的例子

.image:after {
    content: 'Here is some text..';
    color: #fff;

    /* Other styling.. */
}

这在大多数情况下应该有效;但是,如果您有多个img元素,您可能不希望在悬停时出现相同的文本。因此,您可以在data-*属性中设置文本,因此每个img元素都有唯一的文本。

这里的例子

.image:after {
    content: attr(data-content);
    color: #fff;
}

值为contentattr(data-content),伪元素添加.image元素data-content属性中的文本:

<div data-content="Text added on hover" class="image">
    <img src="http://i.stack.imgur.com/Sjsbh.jpg" alt="" />
</div>

您可以添加一些样式并执行以下操作:

这里的例子

在上面的示例中,:after伪元素用作黑色覆盖层,而:before伪元素是标题/文本。由于元素彼此独立,因此您可以使用单独的样式以获得更佳的定位。

.image:after, .image:before {
    position: absolute;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.image:after {
    content: '\A';
    width: 100%; height:100%;
    top: 0; left:0;
    background:rgba(0,0,0,0.6);
}
.image:before {
    content: attr(data-content);
    width: 100%;
    color: #fff;
    z-index: 1;
    bottom: 0;
    padding: 4px 10px;
    text-align: center;
    background: #f00;
    box-sizing: border-box;
    -moz-box-sizing:border-box;
}
.image:hover:after, .image:hover:before {
    opacity: 1;
}
于 2013-08-19T20:39:35.520 回答
56

CSS3 过滤器

虽然这个功能只在 webkit 中实现,不具备浏览器兼容性,但还是值得一看的:

.image img {
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: .2s all;
}

.image img:hover {
    -webkit-filter: brightness(50%);
}

JSFiddle 演示

参考

SO上的类似主题

于 2013-08-19T20:55:21.820 回答
12

你很亲密。这将起作用:

.image { position: relative; border: 1px solid black; width: 200px; height: 200px; }
.image img { max-width: 100%; max-height: 100%; }
.overlay { position: absolute; top: 0; left: 0; right:0; bottom:0; display: none; background-color: rgba(0,0,0,0.5); }
.image:hover .overlay { display: block; }

您需要放置:hover图像,并通过添加和使.overlay整个图像覆盖。right:0;bottom:0

jsfiddle:http: //jsfiddle.net/Zf5am/569/

于 2013-08-19T20:33:29.783 回答
7

这是在图像 div 上使用 :after 而不是额外的覆盖 div 的好方法:http: //jsfiddle.net/Zf5am/576/

<div class="image">
    <img src="http://www.newyorker.com/online/blogs/photobooth/NASAEarth-01.jpg" alt="" />
</div>

.image {position:relative; border:1px solid black; width:200px; height:200px;}
.image img {max-width:100%; max-height:100%;}
.image:hover:after {content:""; position:absolute; top:0; left:0; bottom:0; right:0; background-color: rgba(0,0,0,0.3);}
于 2013-08-19T20:39:50.923 回答
2

.overlay没有高度或宽度,也没有内容,您不能将鼠标悬停在display:none.

相反,我给了 div 相同的大小和位置,并在悬停时.image更改值。RGBA

http://jsfiddle.net/Zf5am/566/

.image { position: absolute; border: 1px solid black; width: 200px; height: 200px; z-index:1;}
.image img { max-width: 100%; max-height: 100%; }
.overlay { position: absolute; top: 0; left: 0; background:rgba(255,0,0,0); z-index: 200; width:200px; height:200px; }
.overlay:hover { background:rgba(255,0,0,.7); }
于 2013-08-19T20:36:14.610 回答
1

看看我在这里做了什么:http: //jsfiddle.net/dyarbrough93/c8wEC/

首先,您从不设置叠加层的尺寸,这意味着它一开始就没有显示出来。其次,我建议您将鼠标悬停在图像上时只更改叠加层的 z-index。更改覆盖的不透明度/颜色以满足您的需要。

.image { position: relative; width: 200px; height: 200px;}
.image img { max-width: 100%; max-height: 100%; }
.overlay { position: absolute; top: 0; left: 0; background-color: gray; z-index: -10; width: 200px; height: 200px; opacity: 0.5}
.image:hover .overlay { z-index: 10}
于 2013-08-19T20:41:55.093 回答
1

您可以通过调整图像的不透明度并将图像的背景颜色设置为黑色来完成此操作。通过使图像透明,它会显得更暗。

<div class="image">
    <img src="http://www.newyorker.com/online/blogs/photobooth/NASAEarth-01.jpg" alt="" />
</div> 

CSS:

.image { position: relative; border: 1px solid black; width: 200px; height: 200px; background: black; }
.image img { max-width: 100%; max-height: 100%; }
.image img:hover { opacity: .5 }

您可能还需要设置特定于浏览器的不透明度,以使其在其他浏览器中也能正常工作。

于 2013-08-19T20:46:31.420 回答
0

我会为您的图像大小的叠加 div 提供最小高度和最小宽度,并在悬停时更改背景颜色

.overlay { position: absolute; top: 0; left: 0;  z-index: 200; min-height:200px; min-width:200px; background-color: none;}
.overlay:hover { background-color: red;}
于 2013-08-19T20:38:00.273 回答