Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm wondering if it's safe to use requestAnimationFrame outside of experimenting yet? I guess you still need the vendor prefixes (moz, ms etc). How many of the modern browsers support it? And how big are the differences? I know FF had trouble with the fps capping at 62.5 - callback time.

Also what is the real difference in using requestAnimationFrame when compared to a setInterval loop?

share|improve this question
what you need it for ? concept is well supported by browser vendors, syntax is almost stable (sans the cancelAnimationFrame ), and you can safely emulate it through shim in legacy browsers. – c69 Mar 21 '12 at 13:14

1 Answer

up vote 0 down vote accepted

It's safe, as long as you are aware the syntax could change, though I doubt it will. Testing is of course important, but I can't see any reason not to, as the enhanced performance is worth it. You can also omit the prefixed version if a browser doesnt work as expected.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.