lcw
This commit is contained in:
@ -1,6 +1,15 @@
|
||||
|
||||
|
||||
import ImageCompressor from "image-compressor.js";
|
||||
|
||||
// 生成10位数的随机数
|
||||
export function generateRandom10Digits() {
|
||||
// 生成范围在1000000000到9999999999之间的随机整数
|
||||
const min = 1000000000;
|
||||
const max = 9999999999;
|
||||
return Math.floor(Math.random() * (max - min + 1)) + min;
|
||||
}
|
||||
|
||||
// 随机颜色 - 把16进制的颜色换成rgba格式
|
||||
export function choseRbgb(color, opcity) {
|
||||
if (color) {
|
||||
|
||||
Reference in New Issue
Block a user