1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| var box1 = document.querySelector('.box1'); var index1 = 0; var animate = function () { setTimeout(function () { index1 ++; box1.style.left = index1 * 1 + 'px'; animate(); },10); }; animate(); var box2 = document.querySelector('.box2'); var index2 = 0; setInterval(function () { index2 ++; box2.style.left = index2 * 1 + 'px'; },10); var box3 = document.querySelector('.box3'); var index3 = 0; var action = function () { index3 ++; box3.style.left = index3 * 1 + 'px'; requestAnimationFrame(action); }; action();
|
