我有一个 javascript 函数,它可以像幻灯片放映一样为图像设置动画。我想要的是让图像从左到右一个接一个地显示。
我似乎无法在代码中找到图像被替换的位置。
var realoffset = d.offset % d.total;
$(this)
.html(d.titles[realoffset])
.attr('action','article:'+(realoffset+1))
.fadeIn(600);
$(this)
.siblings('img')
.attr('src',function(i,attr){
return attr.replace(
/.+(\/large\/[a-zA-Z\.-_]+)$/,
d.locations[realoffset]+'$1'
)
})
.attr('action','article:'+(realoffset+1))
.fadeIn(600);