How to change an image

前端 未结 1 1587
逝去的感伤
逝去的感伤 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

    <div id="css-image-swap-1">
    <img id="swap-1" src="default-image-url" alt="CSS image swap" />
    </div>
    

    CSS

    #css-image-swap-1{
        width:300px; height:150px; background:url(swap-image-url);
    }
    #css-image-swap-1 img:hover{
        opacity:0;
    }
    
    0 讨论(0)
提交回复
热议问题