jQuery 颜色插件
我对 jQuery 很陌生。我创建了一个小脚本来为循环中的 DIV 的颜色背景和另一个 DIV 的边框颜色设置动画。 我使用了 jquery 颜色插件并且脚本有效! (难以置信)
问题是我的脚本非常慢,并且页面加载有问题(尤其是 IE) 这是脚本:
<script type="text/javascript">
$(document).ready(function() {
spectrum();
function spectrum(){
$('#rt-main').animate( { backgroundColor: "#aeff00" }, 5000);
$('#rt-main').animate( { backgroundColor: "#ff6c00" }, 5000);
$('#rt-main').animate( { backgroundColor: "#0086b6" }, 5000);
$('#rt-main').animate( { backgroundColor: "#00a4a8" }, 5000);
$('#rt-main').animate( { backgroundColor: "#d43795" }, 5000);
$('#rt-main').animate( { backgroundColor: "#ffd200" }, 5000);
$('#rt-header').animate( { borderTopColor: "#aeff00" }, 5000);
$('#rt-header').animate( { borderTopColor: "#ff6c00" }, 5000);
$('#rt-header').animate( { borderTopColor: "#0086b6" }, 5000);
$('#rt-header').animate( { borderTopColor: "#00a4a8" }, 5000);
$('#rt-header').animate( { borderTopColor: "#d43795" }, 5000);
$('#rt-header').animate( { borderTopColor: "#ffd200" }, 5000);
spectrum();
}
});
</script>
我确信有更好的方法来做同样的事情。 在这里你可以看到一个演示。 (在 IE 中不起作用)
I'm very new to jQuery. I created a little script to animate color background of a DIV and border color of another DIV in loop.
I used the jquery color plugin and the script works! (Unbelievable)
The problem is that my script is veeery slow, and I have problem with page loading (especially with IE)
This is the script:
<script type="text/javascript">
$(document).ready(function() {
spectrum();
function spectrum(){
$('#rt-main').animate( { backgroundColor: "#aeff00" }, 5000);
$('#rt-main').animate( { backgroundColor: "#ff6c00" }, 5000);
$('#rt-main').animate( { backgroundColor: "#0086b6" }, 5000);
$('#rt-main').animate( { backgroundColor: "#00a4a8" }, 5000);
$('#rt-main').animate( { backgroundColor: "#d43795" }, 5000);
$('#rt-main').animate( { backgroundColor: "#ffd200" }, 5000);
$('#rt-header').animate( { borderTopColor: "#aeff00" }, 5000);
$('#rt-header').animate( { borderTopColor: "#ff6c00" }, 5000);
$('#rt-header').animate( { borderTopColor: "#0086b6" }, 5000);
$('#rt-header').animate( { borderTopColor: "#00a4a8" }, 5000);
$('#rt-header').animate( { borderTopColor: "#d43795" }, 5000);
$('#rt-header').animate( { borderTopColor: "#ffd200" }, 5000);
spectrum();
}
});
</script>
I'm sure there a better way to do the same thing.
Here you can see a demo. (Doesn't work in IE)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
主要问题是您的时间设置为 5 秒,并且您在相同的 2 个元素(在本演示中)完成一次动画之前更改了 5 次背景。
你想实现什么目标?
编辑:
试试这个:
The major problem is your timing is set to 5 seconds, and you're changing the background for the same 2 elements (in this demo) 5-times before their even done animating once.
What are you trying to accomplish?
Edit:
Try this: