我有一個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);
你能格式化這個更具可讀性嗎? –
我幫他解決了這個問題:) –
$(this).siblings('img')。atrr(...)正在替換img標籤 – Huangism