我有一个带有一些缩略图图像的轮播,当用户单击一个时,它假设向左淡出较大的图像,然后使用新图像从左侧淡入。我相信我的语法是正确的,它按预期淡入淡出,但不是我想要的左边。下面是点击事件的 jQuery。
// click event handler for the <a> elements
$("#image_list a").click(function(evt) {
var lgURL = $(this).attr("href");
$("#image").animate({ opacity: 0, left: -205 }, 1000,
function () {
$("#image").attr("src", lgURL);
$(this).animate({ opacity: 1, left: "+=205" }, 1000)
}
); //end animate
evt.preventDefault();
}); //end click