gpt4 book ai didi

javascript - jquery中动画的随机颜色

转载 作者:搜寻专家 更新时间:2023-11-01 04:48:52 25 4
gpt4 key购买 nike

我尝试使用带有 ui animate 的 jquery 添加文本效果。有没有一种方法可以在不定义所有颜色的情况下随机显示所有可能的颜色。例如,颜色组合基于 RGB。使用像

这样的颜色的动画
setInterval(function() {
jQuery(".font-style").animate({color: "red"}, 2000).
animate({color: "green"}, 2000).animate({color: "blue"}, 2000);}, 400);

是否有可能在 jquery 中随机显示 RGB 的颜色组合。任何建议都会很棒。

谢谢。

最佳答案

您可以像这样生成随机颜色:

var newColor = '#'+(0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6);
jQuery(".font-style").animate({color: newColor}, 2000); // animate

这将创建一个随机的十六进制颜色,例如 #ff00cc。

注意:常规的 jQuery 不会为颜色设置动画,您必须使用 jQuery color pluginjQuery UI

关于javascript - jquery中动画的随机颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18508293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com