如何在鼠标悬停时让图像淡入?

How to get an image to fade in when the mouse is hovered over?

我收到了这条提示:

.container img{
     width:125px;
     margin;0;
     padding:0;
     opacity:0.5;
}
.container img:hover{
   opacity:1;
} 

试过了,效果很好!

然后我使用了自定义 CSS 编辑器插件的精简版 - 将代码弹出到其中并将 class 容器 <p class="container"> 添加到图像中并且它起作用了。

您可以为图像使用不透明度 属性:

.container img{
  width:300px;
  margin;0;
  padding:0;
  opacity:0.5;
}
.container img:hover{
  opacity:1;
}
<div class="container">
  <img src="http://www.booths.co.uk/wp-content/uploads/640px-X-360px-Chocolate-MiniNests.jpg"/>
</div>