美文网首页
javascript实现稳定动画帧数的两种方法

javascript实现稳定动画帧数的两种方法

作者: Hi小胡 | 来源:发表于2018-02-15 16:52 被阅读18次

    方法一:

    function show(){
      console.log(1);
      requestAnimationFrame(show);
    }
    show();
    

    方法二:

    function show2(){
      setTimeout(function(){
        console.log(2)
        setTimeout(arguments.callee,1000/60);
      },1000/60);
    }
    show2();
    

    相关文章

      网友评论

          本文标题:javascript实现稳定动画帧数的两种方法

          本文链接:https://www.haomeiwen.com/subject/ydlutftx.html