欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery animate()背景色渐变的处理

程序员文章站 2022-07-06 13:42:38
...
jquery animate函数不能处理背景色渐变,需要使用jquery.color插件

gitHub地址:https://github.com/jquery/jquery-color/

使用代码:
$(function(){
  $("#cdiv").animate({
      backgroundColor:'#FF0000'
    }, 1000)             
})


注意:背景色属性要用backgroundColor,使用background无效。

jquery.color.js的gitHub地址:https://github.com/jquery/jquery-color/