This file contains 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
setInterval(function() { | |
// Do something every 2 seconds | |
}, 2000); |
This file contains 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
/* | |
* transform: A jQuery cssHooks adding 2D/3D transform capabilities to $.fn.css() and $.fn.animate() | |
* | |
* Requirements: | |
* - jQuery 1.5.1+ | |
* - jquery.transition.js for animations | |
* - browser implementing W3C's CSS 2DTransforms for 2D tranform | |
* - browser implementing W3C's CSS 3DTransforms for 3D tranform | |
* | |
* latest version and complete README available on Github: |