用什么方式才能return出这段递归代码,不再执行该方法?
var before = null;
requestAnimationFrame(function animate(now) {
var c = earth.getPosition();
elapsed = before? now - before: 0;
before = now;
earth.setCenter([c[0], c[1] + 0.1*(elapsed/30)]);
requestAnimationFrame(animate);
});
before变量是开关变量,
怎么通过开关去判断requestAnimationFrame(animate)方法是否去执行?
现在需要停止这个动画方法,该怎么做?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
requestAnimationFrame是一个只执行一次的函数,具体的执行时间由浏览器决定,基本上是浏览其执行下一次paint的时刻。