美文网首页
JS随机颜色

JS随机颜色

作者: 笨小孩81 | 来源:发表于2019-06-25 11:36 被阅读0次

没啥好说的,直接上代码

export default class ColorUtil {
    constructor(){

    }

    static randomFF(){
        return Math.round(Math.random()*255).toString(16)
    }
    static randomClor(){
        return '#'+ColorUtil.randomFF()+ColorUtil.randomFF()+ColorUtil.randomFF()
    }
}

相关文章

网友评论

      本文标题:JS随机颜色

      本文链接:https://www.haomeiwen.com/subject/unktcctx.html