-1

嘿,我已经尝试了一段时间,但没有运气。我有以下代码:

<a href="iframelink opened in fancybox"><img src="image link"></a>

如何将图像悬停应用到 img src?谢谢

4

1 回答 1

0

使用背景图像代替<img>标签的示例。

<a href="...." rel="fancybox"><a>

CSS:

a[rel=fancybox] {
  display: block;
  background: url('image1.jpg') no-repeat 0 0 transparent;
  width: 100px; 
  height: 100px;
}

a[rel=...]:hover {
  background: url('image2.jpg') no-repeat 0 0 transparent;
}

您可能需要预加载图像。

使用 JS:

<a href="" rel="" onmouseover="this.getElementById('i1').src='/images/image_hover.jpg'" onmouseout="this.getElementById('i1').src='/images/image.jpg'">
<img id="i1" src="/images/image.jpg">
</a>
于 2012-11-05T00:32:15.103 回答