Found in google
$('.listing-2 li a').mouseover(function() {
$(this).animate({ borderTopColor: "#0e7796" }, 'fast');
});
$('.listing-2 li a').mouseout(function() {
$(this).animate({ borderTopColor: "#fff" }, 'fast');
});
it must be a "borderTopColor" (or left, right, bottom) instead of "borderColor".
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…