【发布时间】:2015-12-16 15:16:10
【问题描述】:
当它悬停时,我需要让另一张图片出现在我现在拥有的图片上方。
这是我目前所拥有的:
<p>
<a href="https://twitter.com/georgevere12">
<img alt="Twitter Link"
src="images/buttons/./twitter.png"
style="position:absolute;
top: 85%;
left: 11%;
width: 5.5%;
height: 10%;
border: none;"
onmouseover="this.src='images/buttons/./twitter-hover.png';"
onmouseout="this.src='images/buttons/./twitter.png';" />
</a>
这会像我想要的那样改变链接的颜色,但现在我想要另一个图像同时悬停在它上面。有什么想法吗?
【问题讨论】: