Created
July 4, 2010 17:05
-
-
Save gaving/463587 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
| Function.prototype.delay = function(s){ setTimeout(this, s*1000); }; | |
| Date.prototype.addDays = function(days){ return new Date(this.getTime() + (days*1000*60*60*24)); } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(function(){ anim('wrapper', 'rotateY(0deg)'); }).delay(0.5);