0
我不知道如何在我的jQuery腳本更平滑的圖像更改。jQuery平滑圖像變化
我也有一個animate()鏈,我可以將「src」更改附加到它嗎?可悲的是,我不能使用圖像作爲背景CSS ...
這裏有一個小樣本...
function growBigger(element) {
$(element)
.find(".inside")
.animate({ width: curWidth, height: curHeight, marginTop:"0px" })
.end()
.find(".label")
.animate({ fontSize:curTitleSize })
.end()
$(element + " .inside .thumbnail").attr("src","images/big_" + curPanel + ".jpg")
}