Created
July 29, 2011 06:42
-
-
Save mediaupstream/1113330 to your computer and use it in GitHub Desktop.
jQuery.eachStep - Demo Two
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
| <script type="text/javascript"> | |
| var collection = [ | |
| '#777777', '#444444', '#222222', '#249adb', | |
| '#fc41a9', '#ffe200', '#faa653', '#007791' | |
| ]; | |
| $.eachStep(collection, '600', function(key, val, duration){ | |
| // each step of the collection animate the .demo2-box backgroundColor | |
| // (requires the jquery.color plugin) | |
| $('.demo2-box').animate({'backgroundColor': val}, duration); | |
| }); | |
| </script> | |
| <div class="demo2-box"> | |
| <h3>DEMO BOX</h3> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment