Jquery背景动画

发布于 2024-10-12 08:01:30 字数 150 浏览 2 评论 0原文

是否可以在 jQuery 中为 background-color 设置动画,因为它不起作用。

$('#something').animate({
    background :"red"
}, 1000);

Is it possible to animate the background-color in jQuery, because it is not working.

$('#something').animate({
    background :"red"
}, 1000);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

忆离笙 2024-10-19 08:01:30

文档

jQuery UI 项目通过允许一些非数字样式,例如要动画的颜色。该项目还包括通过 CSS 类而不是单个属性指定动画的机制。

因此,如果您使用 jQuery UI,则可以设置背景颜色的动画。只需确保您使用的是 backgroundColor 而不是 background

jQuery 的 颜色动画插件 也可以做到这一点。

实例:http://jsfiddle.net/thai/NXejr/2/

From the docs,

The jQuery UI project extends the .animate() method by allowing some non-numeric styles such as colors to be animated. The project also includes mechanisms for specifying animations through CSS classes rather than individual attributes.

So if you use jQuery UI, you can animate background colors. Just make sure that you use backgroundColor and not background.

The color animations plugin for jQuery also does it.

Live Example: http://jsfiddle.net/thai/NXejr/2/

热风软妹 2024-10-19 08:01:30

您需要一个插件来使用 jQuery 制作彩色动画:

http://plugins.jquery.com/project/颜色

You'll need a plugin to do color animations with jQuery:

http://plugins.jquery.com/project/color

泪是无色的血 2024-10-19 08:01:30

试试这个:

$('#something').animate({ backgroundColor: "#FF0000" }, 1000, null, function () {
      $('#something').css("backgroundColor", "#FF0000");
  });

我在 animate 方面取得了不同程度的成功,但发现使用其内置回调加上 jQuery 的 css 似乎适用于大多数情况。使用 jQuery 1.5 在 IE9、FF4、Chrome 中进行测试。

要获得更完整的解决方案,请添加此插件:

$(document).ready(function () {

    $.fn.animateHighlight = function (highlightColor, duration) {
        var highlightBg = highlightColor || "#FF0000";
        var animateMs = duration || 1000;
        var originalBg = this.css("background-color");

        if (!originalBg || originalBg == highlightBg)
            originalBg = "#FFFFFF"; // default to white

        jQuery(this)
            .css("backgroundColor", highlightBg)
            .animate({ backgroundColor: originalBg }, animateMs, null, function () {
                jQuery(this).css("backgroundColor", originalBg); 
            });
    };
});

并像这样调用它:

$('#something').animateHighlight();

Try this:

$('#something').animate({ backgroundColor: "#FF0000" }, 1000, null, function () {
      $('#something').css("backgroundColor", "#FF0000");
  });

I've had varying success with animate, but found that using its built in callback plus jQuery's css seems to work for most cases. Tested in IE9, FF4, Chrome, using jQuery 1.5.

For a more complete solution, add this plugin:

$(document).ready(function () {

    $.fn.animateHighlight = function (highlightColor, duration) {
        var highlightBg = highlightColor || "#FF0000";
        var animateMs = duration || 1000;
        var originalBg = this.css("background-color");

        if (!originalBg || originalBg == highlightBg)
            originalBg = "#FFFFFF"; // default to white

        jQuery(this)
            .css("backgroundColor", highlightBg)
            .animate({ backgroundColor: originalBg }, animateMs, null, function () {
                jQuery(this).css("backgroundColor", originalBg); 
            });
    };
});

and call it like so:

$('#something').animateHighlight();
允世 2024-10-19 08:01:30

这是使用纯 jQuery 为 RGB 颜色设置动画的简单代码(不使用 jQuery.Color 插件)

var start = [255, 0, 0], end=[255,255,255];
$('#element').animate({'aaa': 1}, {step: function(now){
    $(this).css('background-color', 'rgb('+
        parseInt(start[0] + (end[0]-start[0]) * now) + ',' +
        parseInt(start[1] + (end[1]-start[1]) * now) + ',' +
        parseInt(start[2] + (end[2]-start[2]) * now) + ')'
    )
}, complete: function(){$(this).css('aaa', 0)}})

This is simple code to animate RGB colors using pure jQuery (and not using jQuery.Color plugin)

var start = [255, 0, 0], end=[255,255,255];
$('#element').animate({'aaa': 1}, {step: function(now){
    $(this).css('background-color', 'rgb('+
        parseInt(start[0] + (end[0]-start[0]) * now) + ',' +
        parseInt(start[1] + (end[1]-start[1]) * now) + ',' +
        parseInt(start[2] + (end[2]-start[2]) * now) + ')'
    )
}, complete: function(){$(this).css('aaa', 0)}})
如梦 2024-10-19 08:01:30

您可以使用 CSS3 过渡来达到相同的效果。您的动画可以通过此解决方案实现

#something {
  -webkit-transition: background-color 1s linear;
   transition: background-color 1s linear;
   background: red;

}

唯一的问题是 IE<10 支持

You can use CSS3 transitions for that same effect. your animate could be achived with

#something {
  -webkit-transition: background-color 1s linear;
   transition: background-color 1s linear;
   background: red;

}

The only problem with this solution is IE<10 support

昵称有卵用 2024-10-19 08:01:30

使用类似的语法 (...{background-color :"red"}...),我收到错误

语法错误:意外的标记 -

我能够通过将 CSS 属性 background-color 封装在单引号中来使其工作:

$('#something').animate({
    'background-color' :"red"
}, 1000);

Using similar syntax (...{background-color :"red"}...), I get the error

SyntaxError: Unexpected token -

I was able to get it working by encapsulating the CSS property background-color in single quotes:

$('#something').animate({
    'background-color' :"red"
}, 1000);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文