这是我目前所拥有的:
function animateLetter(letter, type){
letter.css(type, '50%');
var j = 50;
loop(function(){
letter.css(type, (j =- 5) + '%');
return j < 0;
});
}
function loop(run) {
if(run.apply()) requestAnimationFrame(loop(run));
}
为什么这行不通?我是 JS 新手,所以可能会遗漏一些明显的东西。