为了账号安全,请及时绑定邮箱和手机立即绑定

javascript - 随机方块(div)无法显示到页面上?

javascript - 随机方块(div)无法显示到页面上?

一只名叫tom的猫 2019-03-19 17:14:55
新手在学习js视频的时候,跟着敲的代码。实现的效果应该是在一个页面上随机生成小方块。运行实际效果并没有方块出现但调试中已有方块产生!代码如下:<script >/* * 产生随机数变量的 */(function (window) {    function Random() {    }    Random.prototype.getRandom = function (min,max) {        return Math.floor(Math.random()*(max-min)+min);    };    window.Random=new Random();//把局部对象暴露给window顶级对象,就成了全局对象})(window);/* * 产生小方块对象 */(function (window) {    console.log(Random.getRandom(0,5))//这个是显示上面是否已经暴露成全局对象    var map = document.querySelector(".map");//使用选择器的方式来获取元素,也可以使用.getElementById    //小方块(食品)的构造函数    function Food(width,height,color) {        this.width=width||20;//默认的小方块的高        this.height=height||20;        this.x=0;//随机产生横坐标        this.y=0;//随机产生纵坐标        this.color=color;        this.element=document.createElement("div");//生成一个装小方块的元素    }    //初始化小方块的显示效果与位置     Food.prototype.init = function(map){        var div = this.element;//设置小方块样式        div.style.position = "absolute";//脱离文档流;        div.style.width = this.width + "px";        div.style.height = this.height + "px";        div.style.backgroudcolor = this.color;        map.appendChild(div);//把小方块加到地图中        this.render(map);    };    //产生随机位置     Food.prototype.render=function(map){        var x =Random.getRandom(0,map.offsetWidth/this.width)*this.width;//随机生成横坐标        var y =Random.getRandom(0,map.offsetHeight/this.height)*this.height;        this.x=x;        this.y=y;        var div = this.element;        div.style.left = this.x + "px";        div.style.top = this.y + "px";    };         var fd = new Food(20,20,"green");     fd.init(map);     console.log(fd.x+"--"+fd.y);     })(window);
查看完整描述

1 回答

?
MMMHUHU

TA贡献1834条经验 获得超8个赞

背景色设置失败了

style.backgroundColor

https://img1.sycdn.imooc.com//5c9b26b700010a0007620432.jpg

查看完整回答
反对 回复 2019-03-27
  • 1 回答
  • 0 关注
  • 668 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信