我建立了一个小型图片库,可以使用 JavaScript Rollovers。我还添加了一些 jquery 来增加图像。我的问题是一切都在 Firefox 中完美运行,但在 IE 或 Chrome 中却不行。一切都将显示在 IE 和 Chrome 中,但是当您单击缩略图时,不会填充大图像。
当前页面代码:
<a href="#" onmouseup = "window.document.gallery.src = 'images/Gallery/Landscapes_Album/slides/Tern Lake Sunset.jpg'">
<img src="images/Gallery/Landscapes_Album/thumbs/Tern Lake Sunset.jpg" width="80" height="80" class="gallery-thumb" id="In"/></a>
当前的jQuery代码:
// jQuery fade-in and fade-out
$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".gallery-thumb").css("opacity","0.5");
// ON MOUSE OVER
$(".gallery-thumb").hover(function () {
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
},
// ON MOUSE OUT
function () {
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.5
}, "slow");
});
});