画像のズーム効果を実装しようとしています (overflow:hidden のコンテナー内にあるため、幅を広げて左にスライドさせるとうまくいくはずです)。
幅を広げることができました:
/* Zoom in images */
$('img.vectimg').load(function() {
$(this).data('width', this.width);
}).bind('mouseenter mouseleave', function(e) {
$(this).stop().animate({
width: $(this).data('width') * (e.type === 'mouseenter' ? 1.2 : 1)
});
});
しかし、左に移動するアニメーションを追加するにはどうすればよいですか? この / を追加しようとしましたが、うまくいきませんでした。
$(this).stop().animate({
left: $(this).position().left + 500
});
私は完全な初心者なので、無理をしないでください:)