Skip to content

Instantly share code, notes, and snippets.

@jpcontrerasv
Created July 11, 2020 21:46
Show Gist options
  • Save jpcontrerasv/5061a14415a73230a70d9d31c195aa18 to your computer and use it in GitHub Desktop.
Save jpcontrerasv/5061a14415a73230a70d9d31c195aa18 to your computer and use it in GitHub Desktop.
$('.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