Created
August 24, 2011 23:21
-
-
Save arbales/1169566 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _.cycle = (arr) -> | |
| -> | |
| arr.push arr.shift() | |
| arr[0] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| next_image = _.cycle ['/images/pages/sfstreet.jpg', '/images/pages/skyrise.jpg', '/images/pages/gate.jpg'] | |
| $(document).ready -> | |
| b = new Backstretch next_image(), {speed: 2000} | |
| new Apollo.Utils.PeriodicalExecuter -> | |
| b.change_source next_image() | |
| , 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment