我尝试使用带有 ui 的 jquery 添加文本效果animate
。有没有一种方法可以在不定义所有颜色的情况下随机显示所有可能的颜色。例如颜色组合是基于RGB
. 使用带有颜色的动画
setInterval(function() {
jQuery(".font-style").animate({color: "red"}, 2000).
animate({color: "green"}, 2000).animate({color: "blue"}, 2000);}, 400);
是否有可能RGB
在 jquery 中显示随机的颜色组合。任何建议都会很棒。
谢谢。