分类:js

js

js生成随机颜色

js生成随机颜色
export function color16 () {//十六进制颜色随机 var r = Math.floor(Math.random() * 256) var g = Math.floor(Math.random() * 256) var b = Math.f...

yekong 3年前 (2021-11-13) 喜欢

js当前时间戳加随机数字

js当前时间戳加随机数字
通过时间戳的变化来判断是否执行某些事件,但是时间戳的单位是秒,有时候一秒内可能会触发多次,所以额外再追加一些随机数字。 var timestamp = Date.parse(new Date()) + GetRandomNum(10000, 999999); export fu...

yekong 3年前 (2021-11-06) 喜欢