悬停时的图像和颜色叠加

时间:2014-02-16 09:53:19

标签: css

将鼠标悬停在图像上时,我很难看到彩色叠加层(和图像)。

基本上,用户应该看到这个叠加层(在下面的2中分开):

enter image description here

我有以下HTML代码段:

<ul id="Grid">
    <li class="mix category_1 mix_all" style="display: inline-block; opacity: 1;">
        <img src="http://i.imgur.com/J4PaouI.jpg" alt="#">
    </li>
</ul>

这是特定的CSS(和z-index只是为了确定):

.mix_all:hover {
    background: url(http://i.imgur.com/0lu7dWs.png) no-repeat center !important;
    background-color: #de6573 !important;
    z-index: 99999999;
}
#Grid .mix {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}
.mix.mix_all img {
    max-height: 200px;
    max-width: 200px;
}

以下是小提琴的链接:

http://jsfiddle.net/t2ea9/

1 个答案:

答案 0 :(得分:2)

这是一个正确的版本:http://jsfiddle.net/maximgladkov/b2twr/1/

您应该使用position: absolute添加其他元素并显示它。

HTML

<ul id="Grid">
    <li class="mix category_1 mix_all">
        <img src="http://i.imgur.com/J4PaouI.jpg" alt="#" />
        <div class="overlay"></div>
    </li>
</ul>

CSS

.mix_all {
    position: relative;
}

.mix_all .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mix_all:hover .overlay {
    background: url(http://i.imgur.com/0lu7dWs.png) no-repeat center !important;
    background-color: #de6573 !important;
    z-index: 99999999;
}