Synchronize timers if a selector (with multiple elements) is played.
// Let's say foo has three elements.
var foo = document.getElementsByClassName('foo');
var surf = Surf(foo);
// Reverse first element.
surf[0].reverse();
// Play all elements with the same timer.
surf.play({ timeout: 8000 });
Synchronize timers if a selector (with multiple elements) is played.