在jquery中创建循环背景动画

发布于 2024-08-23 14:16:27 字数 123 浏览 6 评论 0原文

我想要的是:

当页面加载时 - 背景颜色为红色 10 秒后,bgColor 变为绿色,并带有淡入淡出动画...... 又过了 10 秒,它变成了橙色……然后又变成了红色,依此类推……

有人可以帮忙吗?

What I want is:

when the page loads - the background has color red
after 10 seconds the bgColor changes to green with a fade in fade out animation...
after another 10 seconds it changes to orange....then again to red and so on..

Could someone help

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

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

发布评论

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

评论(1

你没皮卡萌 2024-08-30 14:16:27

使用 setinterval 与更改背景的回调:

$("document").ready(function() {
    var colours = [ "blue", "orange", "pink" ];
    var counter = 0;
    function cycleBackground() {
        $("body").animate({ backgroundColor: colours[counter] }, 500 );
        counter++;
        if(counter == colours.length) {
            counter = 0;
        }
    }
    setInterval(cycleBackground, 10000);
});

您将需要使用 jQuery UI 的 <如果您想在颜色之间平滑循环,请使用 href="http://jqueryui.com/demos/animate/" rel="nofollow noreferrer">animate 函数。

Use setinterval with a callback that changes the background:

$("document").ready(function() {
    var colours = [ "blue", "orange", "pink" ];
    var counter = 0;
    function cycleBackground() {
        $("body").animate({ backgroundColor: colours[counter] }, 500 );
        counter++;
        if(counter == colours.length) {
            counter = 0;
        }
    }
    setInterval(cycleBackground, 10000);
});

You will need to use jQuery UI's animate function if you want to smoothly cycle between colors.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文