Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Deliaz/e45f4061e38fc3252f31 to your computer and use it in GitHub Desktop.
Save Deliaz/e45f4061e38fc3252f31 to your computer and use it in GitHub Desktop.
$element.css({
"transition-duration":"0s",
backgroundColor:'#8f8'
});
setTimeout(function() {
$element.css({
transition:"background 2s linear",
backgroundColor:'#E7E7E7'
});
},500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment