Java教程

随机数demo

本文主要是介绍随机数demo,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
function Color(elem){
    this.elem=elem;
    this.color=["blue","#9b59b6","#f39c12","#1abc9c"];
    this.run=function(){
        setInterval(
            function(){
                console.log(this);
                let i=Math.floor(Math.random()*this.color.length);
                this.elem.style.backgroundColor=this.color[i];
            }.bind(this),
            1000
        )
    }

}
let obj=new Color(document.body);

 

这篇关于随机数demo的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!