javascript requestAnimationFrame在课堂上

时间:2014-06-15 00:28:49

标签: javascript class oop requestanimationframe

以下是代码:

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())

完成了它

0 个答案:

没有答案