Skip to content

Instantly share code, notes, and snippets.

@jwoertink
Created November 14, 2011 18:23
Show Gist options
  • Save jwoertink/1364683 to your computer and use it in GitHub Desktop.
Save jwoertink/1364683 to your computer and use it in GitHub Desktop.
$cycle = $('#billboard .billboard-list').cycle({
fx: 'fade',
timeout: 5000,
pause: 1,
speed: 'slow'
});
$('a[rel=stop]').click(function() {
$cycle.stop();
});
$('a[rel=play]').click(function() {
$cycle.play();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment