我对
jquery很新.我正在尝试使用jquery animate更改文本颜色.但我的代码不起作用.请有人帮助我
<script> $(p).hover(function(){ $(this).animate({"color":"red"}) }) </script>
解决方法
没有使用任何额外的插件:我知道这个问题现在已经很老了,但这是为了帮助任何人仍在寻找解决方案……这是一个解决方法,无需任何额外的插件.
jQuery css改变颜色:
$("p").hover(function(){ $(this).css("color","red"); })
和CSS转换以在颜色更改时复制动画效果:
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; }