Path : /var/www/html/smartcirqls.com/vendors/bower_components/bower/Docs/En/ |
Current File : //var/www/html/smartcirqls.com/vendors/bower_components/bower/Docs/En/Frame.md |
Atom Frame ========== Provides interface to perform animation. It calls you function up to 60 times per second. Alternative (and wrapper in future) for `requestAnimationFrame` ### atom.frame.add(function callback) Adds callback for animation ### atom.frame.remove(function callback) Remove callback from animation #### Example atom.frame.add(function animate() { element.left += 5; if (element.left > 100) { atom.frame.remove(animate); } });