Skip to content
This repository was archived by the owner on Jun 3, 2020. It is now read-only.

Latest commit

 

History

History

animations

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Working with RequestAnimationFrame

A port of the example used in the Leaner, Meaner, Faster Animations with requestAnimationFrame article by Paul Lewis, originally published on HTML5Rocks.

The article explains how to correctly use requestAnimationFrame for your animations. Here is a summary of the article contents:

  • Decouple your events from animations
  • Avoid animations that result in reflow-repaint loops
  • Update your RAF calls to expect a high resolution timestamp as the first parameter
  • Only call RAF when you have visual updates to do

Use the up and down keys to activate the animation. The up key moves the circles from right to left, and the down key moves them from left to right.

Please report any bugs or feature requests.