【发布时间】:2023-03-10 07:09:01
【问题描述】:
我正在尝试在带有背景图像的面板上进行基本的缓出过渡。我希望它在悬停时淡出背景颜色。我尝试过使用各种不工作的转换。我试过了(我认为可行):
transition:background-image 0.2s ease-in-out;
.panel {
width:200px;
height:200px;
background:#000 url("https://cdn.pixabay.com/photo/2016/03/28/12/35/cat-1285634_1280.png") no-repeat center center / cover;
transition:background-image 0.2s ease-in-out;
}
.panel:hover {
background:#000;
transition:background-image 0.2s ease-in-out;
}
<div class="panel"></div>
【问题讨论】:
标签: css css-transitions