[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
siakad
/
login
/
keuangan
/
vendors
/
bower_components
/
bower
/
Docs
/
En
/
[
Home
]
File: 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); } });