border color left to right animation
- by Juliver Galleto
Ok i have this code currently.
$(document).ready(function(){
$('.animation').mouseover(function(){
$(this).animate({ borderTopColor: "#000" }, 'fast');
});
});
but what im trying to achieve is to animate the bottom border color that will fade in and out from left to right. for example whenever a user is hover into this .animation, the bottom…