如何使用jQuery从左向右移动图像?
答案 0 :(得分:2)
JQuery for absolute beginners是一个视频教程,介绍了您可能会觉得有用的技巧(包括动画图像)。
答案 1 :(得分:2)
你可以使用动画:
var _img = $("SELECTOR FOR IMAGE");
$(_img).animate(
{ "left": ($(_img).position().left + 500 },
200, //DURATION
"linear", //EASING
null);//CALLBACK
//Change 500 to what ever value you want the image to move by