Skip to content

Instantly share code, notes, and snippets.

@libbyschuknight
Created August 3, 2015 03:32
Show Gist options
  • Save libbyschuknight/bcd7cf92ed351f85305a to your computer and use it in GitHub Desktop.
Save libbyschuknight/bcd7cf92ed351f85305a to your computer and use it in GitHub Desktop.
using animate() in jquery
$('img').mouseenter(function () {
$(this).css({border: '0 solid #f37736'}).animate({
borderWidth: 4
}, 500);
}).mouseleave(function () {
$(this).animate({
borderWidth: 0
}, 500).hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment