我有一个大问题。我在我的投资组合中加入了一个“淡入淡出脚本”,它使用 jQuery 和 CSS 在我的投资组合中的缩略图之间淡入淡出。不幸的是,它基于我无法链接的 2 个 img 类。
换句话说,我喜欢将图像 green.jpg 链接到一个 URL(在这种情况下是一个灯箱中的 youtube 剪辑)。
有谁知道如何解决这个问题?
HTML:
<div class="item">
<div id="cf">
<a href="http://www.youtube.com/watch?v=uhi5x7V3WXE" rel="vidbox" title="caption">
<img class="bottom" src="img/green.jpg" border="0" />
</a>
<img class="top" src="img/a_childish_letter.jpg" />
</div>
</div>
CSS:
#cf {
position:relative;
height:200px;
width:310px;
margin:0 auto;
}
#cf img {
position:absolute;
left:0;
-webkit-transition: opacity .7s ease-in-out;
-moz-transition: opacity .7s ease-in-out;
-o-transition: opacity .7s ease-in-out;
transition: opacity .7s ease-in-out;
cursor:pointer;
}
#cf img.top:hover {
opacity:0;
}
非常感谢!如果有任何帮助,您可以查看http://www.axeltagg.com/test/上的页面
最好的祝福!/阿克塞尔