jQuery不允许css属性值为非数字的属性进行动画处理,
比如.animate(color:'red',500)或是.animate(fontWeight:'bold',500)都无法运行,
因此如果想实现颜色渐变的效果需要animate()外的其他方法,示例如下
方法1:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript" src="https://libs.baidu.com/jquery/1.7.2/jquery.js"></script> </head> <body> <div>BBB</div> <div>BBB</div> </body> <script type="text/javascript"> $(function(){ $('.b1').hover(function(){ $('.b2').fadeIn(500); }) }) </script> </html>
设置一个和b1完全相同位置的b2并隐藏,添加hover事件使b2渐显,用这个笨方法可模拟color渐变效果
方法2:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> div{ color: red; transition: color 1s; } div:hover{ color: yellow; } </style> <script type="text/javascript" src="https://www.jb51.net/d:/jquery-3.1.0.js"></script> </head> <body> <div>1111</div> <script type="text/javascript"> </script> </body> </html>
利用css3的transition方法,实现鼠标悬浮后,颜色渐变动画效果
PS:这里再为大家推荐几款相关的颜色与特效工具供大家参考使用:
更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery常用插件及用法总结》、《jquery中Ajax用法总结》、《jQuery表格(table)操作技巧汇总》、《jQuery扩展技巧总结》、《jQuery常见经典特效汇总》及《jquery选择器用法总结》