如何正确设置图像标题和悬停图像

时间:2018-08-27 06:58:29

标签: css angular image css3 angular-masonry

我一直在尝试使用角砌。我一直在尝试将鼠标悬停在图像上时,图像会变暗,并且标题在图像上的曝光度更高(对比度高),以便能够正确读取。但是,当我尝试将鼠标悬停在图像上时,图像中的标题(或在我的情况下称为标题)消失了(或显然也受图像变暗的影响)。

要完全理解我的意思,请参阅此Sample Code on StackBlitz

我一直试图在纯CSS中执行此操作,以便在我的角度代码中仅处理那些数据和屏幕转换(routerlinks)。我将样式留给CSS和其他库(即Angular Masonry)

3 个答案:

答案 0 :(得分:1)

问题是.feed-header位于过滤器后面,因此您需要在该类上设置z-index

.masonry-item
.feed-container
.feed-header {
  position: absolute;
  width: 100%;
  padding: 10px;
  align-items: center;
  display: flex;
  z-index: 9;
}

此外,如果要使文本形成对比,则可能需要将鼠标悬停时将其设置为白色(以与深色滤镜形成对比)。您可以使用:

.masonry-item
.feed-container:hover
.feed-header {
  color: white;
}

Here is a StackBlitz demo

答案 1 :(得分:0)

This stackblitz should work

我所做的就是在图像的放置标题,并将其作为SASS添加到您的CSS文件中:

ngxMasonryItem {
  .feed-text {
    color: white;
    z-index: 9999;
  }
  &:hover {
    img {
      filter:  blur(2px) brightness(50%)
    }
  }
}

(删除您以前使用的过滤器)

在HTML中,声明顺序很重要,z-index也很重要。

答案 2 :(得分:0)

Try This Demo

CSS文件

.box {  

    cursor: pointer;  
    height: 468px;  
    float: left;  
    margin: 5px;  
    position: relative;  
    overflow: hidden;  
    width: 468px;  

}  

 .box img {  
    position: absolute;  
    left: 0;  
    -webkit-transition: all 300ms ease-out;  
    -moz-transition: all 300ms ease-out;  
    -o-transition: all 300ms ease-out;  
    -ms-transition: all 300ms ease-out;  
    transition: all 300ms ease-out;  
}  


.box .caption {  
    font-family: Tahoma;
    font-size: .5em;
    background-color: rgba(0,0,0,0.8);  
    position: absolute;  
    color: #fff;  
    z-index: 100;  
    -webkit-transition: all 300ms ease-out;  
    -moz-transition: all 300ms ease-out;  
    -o-transition: all 300ms ease-out;  
    -ms-transition: all 300ms ease-out;  
    transition: all 300ms ease-out;  
    left: 0;  
    opacity: 0;  
    width: 450px;  
    height: 450px;  
    text-align: left;  
    padding: 15px;
}  



 .box:hover .fade-caption {  
    opacity: 1;  
} 

HTML文件

<div id="mainwrapper"> 

<!-- Image Caption 3 -->  
     <!-- Image Caption 3 -->  
    <div class="box">  
        <img id="image-3" src="https://www.w3schools.com/howto/img_avatar.png"/>  
        <span class="caption fade-caption">  
        <h3>Fade Caption</h3>  
        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit,sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>  
        </span>  
    </div>

   <div class="box">  
        <img id="image-3" src="https://www.w3schools.com/howto/img_avatar.png"/>  
        <span class="caption fade-caption">  
        <h3>Fade Caption</h3>  
        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit,sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>  
        </span>  
    </div>


</div>