jQuery实现动画效果的实例代码_jquery
程序员文章站
2022-03-28 14:18:28
...
复制代码 代码如下:
else if (i == 3 & c == 0) { $('img').animate({ left: '+=400px', top: '-=200px' }, 1); c++ }
else if (i == 3 & c == 1) { $('img').animate({ left: '-=200px' }, 2000); c++ }
else if (i == 3 & c == 2) { $('img').animate({ left: '-=200px' }, 2000); c++; }
else { $('img').animate({ left: '-=200px' }, 2000); i++; }
}
})
})
下一篇: nginx HTTP处理流程的浅析