CSS转换另一个类img:hover

时间:2015-09-17 11:25:08

标签: css hover transition info

我有一个类:悬停效果,给出图像颜色。 我有这个单独的课程,显示' +' on:悬停,但只有当我悬停这个类时。我想要两个:悬停效果对一个img:悬停:

img:hover效果的代码。 (使用黑白滤镜)。

.og-grid li > a,
.og-grid li > a img {
    border: none;
    outline: none;
    display: block;
    position: relative;
    -webkit-filter: grayscale(100%); 
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); 
}

.og-grid li > a,
.og-grid li > a img:hover{
    -webkit-filter: grayscale(0%);
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
}

+悬停效果的代码。

.viewmore {
    margin-left: 350px;
    opacity: 0;
    position: absolute;
    z-index: 100;
}

.viewmore:hover{
    opacity: 100;
    margin-top: 45px;
    transition: all ease 0.9s;
}

HTML(想要在网格中的所有img上应用它):  viewmore.png是&#39; +&#39;当我将它悬停时,img会消失。

<img src="img/viewmore.png" class="viewmore">
                <ul id="og-grid" class="og-grid">

                    <li>  
                        <a href="" data-largesrc="img/work/sunmoon.jpg" data-title="MoonSun Shades" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
                            <img src="img/work/sunmoon2.jpg" alt="img01"/>
                        </a>
                    </li>
           </ul>

GIF: https://gyazo.com/fe388835229cf2492a0188f2d29a12df

我想在我悬停img时同时看到它们。

1 个答案:

答案 0 :(得分:1)

诀窍是在父元素上使用:hover伪类。当您将父母悬停时,您可以移动其中一个孩子。

我重新编写了一些代码并引入了更多的语义类名称:

.view-more img.main {
    transition: all 1s ease;
    display: block;
    -webkit-filter: grayscale(100%); 
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); 
}

.view-more:hover img.main {
    -webkit-filter: grayscale(0%);
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
}
.view-more {
    position: relative; /* needed for child absolute positioning */
    display: inline-block;
    overflow: hidden;
}
.view-more .button {
    right: 10px;
    top: -80px;
    position: absolute;
    z-index: 100;
    opacity: 0;
    transition: all 1s ease;
    border: 1px red solid;
}
.view-more:hover .button {
    top: 0;
    opacity: 1;
}
<a href="#" class="view-more">
    <img class="main" src="https://via.placeholder.com/350x150" alt="img01" width="200"/>
    <img src="https://via.placeholder.com/50x50" class="button" width="50">
</a>