在jquery中创建循环背景动画
我想要的是:
当页面加载时 - 背景颜色为红色 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 setinterval 与更改背景的回调:
您将需要使用 jQuery UI 的 <如果您想在颜色之间平滑循环,请使用 href="http://jqueryui.com/demos/animate/" rel="nofollow noreferrer">animate 函数。
Use setinterval with a callback that changes the background:
You will need to use jQuery UI's animate function if you want to smoothly cycle between colors.