Without using any additional plugin: I know this question is pretty old now but this is to help anyone still looking for a solution... here is a workaround without the need of any additional plugin.
jQuery css to change the color:
$("p").hover(function(){
$(this).css("color","red");
})
and CSS transition to replicate the animation effect when the color changes:
p {
color: black;
-webkit-transition: color 0.4s ease;
-moz-transition: color 0.4s ease;
-o-transition: color 0.4s ease;
transition: color 0.4s ease;
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…