以下是代码:
function myclass(arguments_nevermind)
{
var requestAnimationFrame= window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame;
this.running=false;
this.start = function()
{
this.running= true;
this.requestAnimationFrame( this.loop() );
}
this.loop = function()
{//some operations...
if( this.running)
{
this.requestAnimationFrame( this.loop() );
}
}
this.stop=function(){this.running=false;}
}
我只是继续“过多的递归”。我已经尝试了很多这种可能性。知道怎么能让这个工作吗? (我已经使用setInterval())
完成了它