我创建了一个记事卡图像,在上面叠加了多个图像。这些是记事卡的元素。我想要它,以便当我将鼠标悬停在记事卡上时,我可以完全更改记事卡图像上的内容(将新事物叠加到记事卡上)。
所以现在,我现在有这个:
<div style="position:relative;">
<a href="#games">
<img id "image_a" a" src="images/card_normal.png" onmouseover "this.src rc 'images/hover/card_hover.png';" ;" onmouseout "this.src rc 'images/card_normal.png';" ;" style="position: absolute; top: 0; left: 0;"/>
<img id "image_b" b" src="images/category_icons/icon_games.png" style="position: absolute; top: 10px; left: 40px;"/>
<img id "image_c" c" src="images/category_titles/title_games.png" style="position: absolute; top: 160px; left: 40px;"/>
</a>
</div>
记事卡变为“悬停”版本的地方,但我无法更改其他任何内容。我想要它,以便每当鼠标指针在记事卡中(包括如果它在记事卡内的其他元素上),内容就会改变。我想完全废弃它的内容(所以标题和图标)并更改它,以便我可以添加文本并覆盖新图像。
我怎样才能在 JS/HTML/etc 中做到这一点?