Change image on hover

前端 未结 9 665
鱼传尺愫
鱼传尺愫 2020-12-03 03:02

How can I change this exact code to do the hovering effect on mouseover?

I tried following some of the other questions and answers, but I could not really follow the

9条回答
  •  醉酒成梦
    2020-12-03 03:36

    Here is a simplified code sample:

    .change_img {
        background-image: url(image1.jpg);
    }
    .change_img:hover {
        background-image: url(image2.jpg);
    }
    

提交回复
热议问题