Created
July 11, 2020 21:46
-
-
Save jpcontrerasv/5061a14415a73230a70d9d31c195aa18 to your computer and use it in GitHub Desktop.
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
$('.over').hover(function () { | |
$(this).find('p').delay(1).animate({ | |
color: 'white' | |
}, 0); | |
}, function () { | |
$(this).find('p').delay(3000).animate({ | |
color: 'black' | |
}, 100); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment