html 图像悬停时的黑色透明度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 图像悬停时的黑色透明度相关的知识,希望对你有一定的参考价值。


more example:
http://stackoverflow.com/questions/18322548/black-transparent-overlay-on-image-hover-with-only-css

http://jsfiddle.net/9z26ky19/


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



<style>
  
.image {
    position:relative;
    width:400px;
    height:400px;
}
.image img {
    width:100%;
    vertical-align:top;
}
.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 0.5s;
    -webkit-transition: all 0.5s;
}
.image:hover:after {
    opacity:1;
}  
  
</style>

以上是关于html 图像悬停时的黑色透明度的主要内容,如果未能解决你的问题,请参考以下文章

悬停时的不透明度变化会导致图像偏移或失真

使用 CSS3 悬停时的背景图像不透明度过渡

在悬停时使浮动图像透明会导致它“跳跃”[重复]

在任何背景上突出显示图像(悬停时)

jquery悬停列表背景

html 悬停时的图像缩放效果