How to change an image

前端 未结 1 1592
逝去的感伤
逝去的感伤 2021-01-06 00:48

How can I change an image (set using tag, which is not a

or background, that can be easi
1条回答
  •  被撕碎了的回忆
    2021-01-06 01:34

    HTML

    CSS image swap

    CSS

    #css-image-swap-1{
        width:300px; height:150px; background:url(swap-image-url);
    }
    #css-image-swap-1 img:hover{
        opacity:0;
    }
    

    0 讨论(0)
提交回复
热议问题