// 随机生成颜色
export function generateRandomColors(num) {
var colors = []; // 存放生成的颜色数组
for (var i = 0; i < num; i++) {
var red = Math.floor(Math.random() * 256); // 红色分量范围为[0-255]
var green = Math.floor(Math.random() * 256); // 绿色分量范围为[0-255]
var blue = Math.floor(Math.random() * 256); // 蓝色分量范围为[0-255]
var color = "rgb(" + red + ", " + green + ", " + blue + ")"; // 将RGB值转换为字符串形式表示颜色
if (!colors.includes(color)) { // 判断该颜色是否已经在数组中存在
colors.push(color); // 如果没有重复则添加到数组中
} else {
i--; // 若发现了重复颜色,则需要再次生成新的颜色
}
}
return colors;
}
generateRandomColors(10)