jQuery animate()实现背景色渐变效果的处理方法【使用jQuery.color.js插件】
本文实例讲述了jQuery animate()实现背景色渐变效果的处理方法。分享给大家供大家参考,具体如下:
jquery animate函数不能处理背景色渐变,需要使用jquery.color插件
核心代码:
$(function(){ $("#cdiv").animate( { backgroundColor:'#FF0000' },1000 ) })
完整代码如下:
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <title>背景色渐变效果</title> </head> <body> <script language="javascript" type="text/javascript" src="jquery-1.7.2.min.js"></script> <script type="text/javascript" src="js/jquery.color.js"></script> <div id='cdiv' style='width:200px;height:100px;background-color:white'></div> <script> $(function(){ $("#cdiv").animate( { backgroundColor:'#FF0000' },1000 ) }) </script> </body> </html>
运行效果图如下:
附:jQuery.color.js
插件点击此处本站下载。
PS:这里再为大家推荐几款相关的颜色与特效工具供大家参考使用:
在线特效文字/彩色文字生成工具:
http://tools.jb51.net/aideddesign/colortext
在线彩虹文字/颜色渐变文字生成工具:
http://tools.jb51.net/aideddesign/txt_caihongzi
在线发光字生成工具:
http://tools.jb51.net/aideddesign/txt_faguangzi
仿古书排版文字竖排转换工具:
http://tools.jb51.net/transcoding/shupai
更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery常用插件及用法总结》、《jquery中Ajax用法总结》、《jQuery表格(table)操作技巧汇总》、《jQuery扩展技巧总结》、《jQuery常见经典特效汇总》及《jquery选择器用法总结》
希望本文所述对大家jQuery程序设计有所帮助。
相关推荐
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17