Created
May 15, 2014 21:20
-
-
Save carlosrojaso/f3e88d43f02596e8c34f to your computer and use it in GitHub Desktop.
JQ delay
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
// Hide all level 1 headings over half a second; then wait for 1.5 seconds | |
// and reveal all level 1 headings over 0.3 seconds | |
$( "h1" ).hide( 500 ).delay( 1500 ).show( 300 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment