我有一个像这样设置为背景的图像
.about {
height: 351px;
background-image:url("../images/about.png");
background-position:center;
background-repeat:no-repeat;
}
我正在尝试用户:悬停
.about:hover {
background-image:url("../images/hover.png");
}
在顶部显示另一个图像。我希望原始图片仍然存在,因为悬停图像具有透明度。
这种方式替换图像,有没有办法不替换它而只是将鼠标悬停在原始图像上?