随机产生小方块

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        #map{
            width: 800px;
            height: 600px;
            background-color: pink;
            position: relative;
            /*小方块要脱离标准文档流*/
        }


    </style>
</head>
<body>
<div id="map"></div>
<script>
    //对象:随机数,小方块

    //产生随机数的对象
    ((function () {
        function Random() {

        }
        Random.prototype.getRandom=function (min,max) {
            return parseInt(Math.random()*(max-min)+min)
        }
        window.Random=Random;
    })())
            var rm=new Random();

    ((function () {
        function Food(width,height,color,x,y) {
            this.width=width||20;
            this.height=height||20;
            this.color=color||"red";
            this.x=x||0;
            this.y=y||0;
            this.element=document.createElement("div")
        }
        Food.prototype.init=function (map) {
            var div=this.element;
            div.style.width=this.width+"px";
            div.style.height=this.height+"px";
            div.style.background=this.color;
            div.style.position="absolute";
            map.appendChild(div);

            this.cen(map);
        }
        Food.prototype.cen=function (map) {
            this.x=rm.getRandom(0,map.offsetWidth/this.width)*this.width;
            this.y=rm.getRandom(0,map.offsetHeight/this.height)*this.height;

            this.element.style.left=this.x+"px";
            this.element.style.top=this.y+"px";
            console.log(this.element);
        }

        var food=new Food();
        food.init(document.getElementById("map"))
    })())
</script>
</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值