我有一個問題。在我的網站中,我添加了一個效果:當有人將縮略圖懸停時,其他透明度會隨着jQuery動畫而降低。 它在FF和IE中完美工作,在Chrome中存在一個問題:在動畫過程中,一些縮略圖向左或向右移動1px。jQuery動畫不透明錯誤(移動圖像)
這是jQuery函數:
var GALLERIE = {
thumbHover : function(contenitore){
var $immagini = $(contenitore).find('img');
$immagini.parent('a').hover(
function(){ $immagini.not($(this).find('img')).stop(true).animate({opacity:'0.8'},400)},
function(){ $immagini.not($(this).find('img')).stop(true).animate({opacity:'1'},400)}
)
}
};