1
我希望#pic3消失,#pic4在鼠標懸停在#pic3上時出現在它的位置。使用CSS懸停後,圖像消失並出現其他圖像
的CSS:
#pic3{
max-width: 800px;
max-height: 500px;
}
#pic4{
max-width:800px;
max-height: 500px;
display:none;
}
#pic4:hover{
max-width:800px;
max-height: 500px;
opacity:1;
}
在HTML
<div class="maps1">
<img id="pic3" src="chicago.png">
<img id="pic4" src="chicago2.png">
</div>
這工作,感謝您的快速響應的轉變! – user3121693