我有一个图像,它的背景颜色在悬停时会发生变化。
改变颜色需要 1 秒钟,但是一旦骏马移出图像,它就会变回来而没有任何效果。
我怎样才能有淡出背景颜色的效果?
CSS:
.latestTrack {
margin:80px 0 0 0 !important;
}
.latestTrack img {
float:right;
margin-right:50px !important;
}
.latestTrack img:hover
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
background-color:#f7710f;
}
HTML:
<img src="img/SocIco/soundcloud-large.png" />