我正在尝试实现图像缩放效果(因为它位于溢出的容器中:隐藏,增加它的宽度并向左滑动应该可以解决问题)。
我设法让它增加它的宽度:
/* 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
});
我是一个完整的新手,所以请不要让我难过:)