jquery 的animate()方法可以改变背景颜色么?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 的animate()方法可以改变背景颜色么?相关的知识,希望对你有一定的参考价值。

我写的代码为什么改变不了背景颜色呢?$("div:contains('你好')").click(function()
$(this).animate(background:"red",3000)
)

jquery 的animate()方法是不可以改变背景颜色的,如果想改变背景颜色,需要引入jquery.color插件,再用animate()来实现背景色变化,具体代码如下:

<script src='jquery.animate-colors.js'></script>

$("div:contains('你好')").click(function()$(this).animate(background:"red",3000))

下面是实现背景色改变的结果:

扩展资料

jquery改变背景颜色的动态方法

1、脚本方法:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script

<select class="rez"> <option value="Not Confirmed">Not Confirmed</option>

2、选定方法: 

<option value="Confirmed" selected="selected">Confirmed</option></select><select class="rez">

<option value="Not Confirmed" selected="selected">Not Confirmed</option>

<option value="Confirmed">Confirmed</option></select>

参考技术A

可以,当使用 animate() 时,必须使用 Camel 标记法书写所有的属性名,比如,必须使用 paddingLeft 而不是 padding-left,使用 marginRight 而不是 margin-right。backgroundColor。颜色动画不包含在核心 jQuery 库中。如果您想要应用动画颜色,您需要从 jQuery.com 下载 颜色动画插件。

$("div:contains('你好')").click(function()

$(this).animate(backgroundColor:"red",3000)
)。


扩展资料:

animate()方法样式值:backgroundPosition,borderWidth,borderBottomWidth,borderLeftWidth,borderRightWidth,borderTopWidth,borderSpacing,margin。

marginBottom,marginLeft,marginRight,marginTop,outlineWidth,padding,paddingBottom,paddingLeft,paddingRight,paddingTop,height,width。

maxHeight,maxWidth,minHeight,minWidth,font,fontSize,bottom,left,right,top,letterSpacing,wordSpacing,lineHeight,textIndent。

参考技术B

页面上只引用一个jquery的脚本是不行的,color属于ui,在引用一个jquery-ui的脚本就可以了。解决方法如下:

1、首先新建一个html文档,并引入jquery。

2、定义一个<p>元素,并将其设置为一个长宽为100px的蓝色方块。

3、保存以上内容,并在浏览器预览效果。

4、为<p>元素设置animate()动画方法,使其被点击之后,在3秒之中实现宽度变大,高度变小,成为一个长方形。

5、保存以上文件,就可以在浏览器预览一个基本的jquery的animate()的颜色效果图。

参考技术C jquery animate函数不能处理背景色渐变,需要使用jquery.color插件

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

$(function()
  $("#cdiv").animate(
    
  backgroundColor:'#FF0000'
,1000<br>   )

)

演示地址:

http://runjs.cn/detail/xmax7vo3 

引用自:http://www.cnblogs.com/haitao-fan/p/3903501.html
参考技术D jquery的animate不能改变background-color;
原文:
All animated properties should be animated to a single numeric value, except as noted below; most properties that are non-numeric cannot be animated using basic jQuery functionality(For example, width, height, or left can be animated but background-color cannot be, unless the jQuery.Color() plugin is used)

jquery animate()方法 语法

jquery animate()方法 语法

作用:animate() 方法执行 CSS 属性集的自定义动画。该方法通过CSS样式将元素从一个状态改变为另一个状态。CSS属性值是逐渐改变的,这样就可以创建动画效果。只有数字值可创建动画(比如 "margin:30px")。大理石平台怎么样字符串值无法创建动画(比如 " padding: 0px 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); line-height: 36px; background-color: rgb(242, 242, 242); color: rgb(102, 102, 102); font-family: "Helvetica Neue", Helvetica, "PingFang SC", 微软雅黑, Tahoma, Arial, sans-serif;">语法1:$(selector).animate(styles,speed,easing,callback)

参数:

参数 描述
styles     必需。规定产生动画效果的 CSS 样式和值。
speed     可选。规定动画的速度。默认是 "normal"。可能的值:毫秒 (比如 1500) "slow"  "normal"  "fast" 
easing     可选。规定在不同的动画点中设置动画速度的 easing 函数。内置的 easing 函数:swing   linear扩展插件中提供更多 easing 函数。
callback     可选。animate 函数执行完之后,要执行的函数。


语法2:
$(selector).animate(styles,options)

参数:

参数 描述
styles     必需。规定产生动画效果的 CSS 样式和值(同上)。
options 可选。规定动画的额外选项。可能的值:speed - 设置动画的速度  easing - 规定要使用的 easing 函数  callback - 规定动画完成之后要执行的函数    step - 规定动画的每一步完成之后要执行的函数   queue - 布尔值。指示是否在效果队列中放置动画。如果为 false,则动画将立即开始   specialEasing - 来自 styles 参数的一个或多个 CSS 属性的映射,以及它们的对应 easing 函数

jquery animate()方法 示例

<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
  {
  $(".btn1").click(function(){
    $("#box").animate({height:"300px"});
  });
  $(".btn2").click(function(){
    $("#box").animate({height:"100px"});
  });
});
</script>
</head>
<body>
<div id="box" style="background:#98bf21;height:100px;width:100px;margin:6px;">
</div>
<button class="btn1">Animate</button>
<button class="btn2">Reset</button>
</body>
</html>

以上是关于jquery 的animate()方法可以改变背景颜色么?的主要内容,如果未能解决你的问题,请参考以下文章

jQuery 效果 - animate() 方法

jquery animate()方法 语法

Jquery Animate 不适合我

用jquery延迟改变背景位置

jQuery背景动画

jquery 的 animate(left:1000px,1000);和animate(marginLeft:1000px,1000);有啥区别呢?