js中利用面向过程和面向对象实现圆点碰壁反弹

使用面向过程实现碰壁反弹

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            * {
                margin: 0;
                padding: 0;
            }
            html,
            body {
                width: 100%;
                height: 100%;
            }
            
            #wrap {
                background: gray;
                height: 100%;
                width: 100%;                
                position: relative;
                overflow: hidden;
            }
            
            #wrap>div {
                border-radius: 50%;
                transition: all 0.15s;
                position: absolute;
            }
        </style>
    </head>
    <div id="wrap">
    </div>
    <body>
    </body>
    <script type="text/javascript">
        var wrap = document.querySelector('#wrap');
        console.log(wrap.offsetHeight);
        console.log(wrap.offsetWidth);
        //定义随机颜色
        var color = '0123456789abcdef';

        function createCircle() {
            //随机生成圆点宽高  
            cirWidth = parseInt(Math.random() * 40 + 10);//产生10到50的数

            //随机生成颜色
            var co = '';
            for(var i = 0; i < 6; i++) {
                co = co + color[parseInt(Math.random() * color.length)];
            }
            var colors = '#' + co;
            var boll = document.createElement('div');
            
            boll.style.width = cirWidth + 'px';
            boll.style.height = cirWidth + 'px';
            //定义生成的坐标
            cirX = parseInt(Math.random() * (wrap.offsetWidth - cirWidth));
            cirY = parseInt(Math.random() * (wrap.offsetHeight - cirWidth));
            //生成div标签
            boll.style.left = cirX + 'px';
            boll.style.top = cirY + 'px';
            boll.style.background = colors;
            wrap.appendChild(boll);

            //随机生成x和y轴移动速度
            var speedX = parseInt(Math.random() * 10+5);//5-15
            var speedY = parseInt(Math.random() * 10+10);//10-20
            console.log(speedX);
            console.log(speedY);
            //定义圆点移动函数
            setInterval(function() {
                // 判断当前小球所在的位置是否达到围栏限制的位置
                // 水平状态
                var left = boll.offsetLeft;
                var top = boll.offsetTop;
                if(left + boll.offsetWidth  >= wrap.offsetWidth || left <= 0) {
                    speedX *= -1;
                }
                // 垂直状态
                if(top + boll.offsetHeight  >= wrap.offsetHeight || top <= 0) {
                    speedY *= -1;
                }
                // 修改小球水平运动速度方向
                left = left + speedX;
                top = top + speedY;
                //防止小球超出边界
                if (left < 0) {
                    left = 0;
                } else if(left>wrap.offsetWidth-boll.offsetWidth){
                    left = wrap.offsetWidth-boll.offsetWidth;
                }
                if (top < 0) {
                    top = 0;
                } else if(top>wrap.offsetHeight-boll.offsetHeight){
                    top = wrap.offsetHeight-boll.offsetHeight;
                }
                boll.style.left = left +'px';
                boll.style.top = top +'px';     
            }, 15);
        }
        for(var i = 0; i < 100; i++) {
            createCircle();
        }       
    </script>
</html>

使用面向对象实现碰壁反弹

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            * {
                margin: 0;
                padding: 0;
            }
            /*设置html和body标签的宽高和浏览器可视区域一样*/
            
            html,
            body {
                width: 100%;
                height: 100%;
            }
            /*设置小球移动范围的相关样式*/
            
            #wrap {
                width: 100%;
                height: 100%;
                background: black;
                position: relative;
                overflow: hidden;
            }
            
            .boll {
                position: absolute;
                border-radius: 50%;
            }
        </style>
        <script type="text/javascript">
            window.onload = function() {
                //获取容器结点
                var wrap = document.querySelector('#wrap');
                //工具函数:产生指定范围内的随机数
                function ranFn(min, max) {
                    return parseInt(Math.random() * (max - min) + min);
                }

                //创建小球对象的构造函数
                function Ball() {
                    //随机产生小球的宽高
                    var wh = ranFn(20, 50);
                    //设置宽、高属性和属性值
                    this.width = wh;
                    this.height = wh;
                    //设置小球诞生点的坐标属性
                    this.top = ranFn(0, document.body.offsetHeight - wh) + 'px';
                    this.left = ranFn(0, document.body.offsetWidth - wh) + 'px';
                    //设置小球随机背景颜色rgba(255,255,255,0.5)
                    this.color = 'rgba(' + ranFn(0, 256) + ',' + ranFn(0, 256) + ',' + ranFn(0, 256) + ',' + Math.random() + ')';
                    //设置小球随机移动速度
                    this.speedX = ranFn(-10, 10);
                    this.speedY = ranFn(-10, 10);                   
                    //设置保存小球标签的属性
                    this.div = document.createElement('div');
                }
                //原型方法:绘制小球(配置div标签的相关css样式,然后把标签拼接进文档流)
                Ball.prototype.draw = function() {
                        this.div.className = 'boll';
                        this.div.style.width = this.width + 'px';
                        this.div.style.height = this.height + 'px';
                        this.div.style.top = this.top;
                        this.div.style.left = this.left;
                        this.div.style.backgroundColor = this.color;
                        //把配置好的节点拼接进文档流
                        wrap.appendChild(this.div);
                    }
                    //原型方法:小球移动
                Ball.prototype.move = function() {
                    //因为在定时器中使用的this指针是指向window对象的,要在定时器中获取当前
                    //操作的小球对象,就必须在定时器外部用变量把当前操作小球对象保存下来,在定时器
                    //内部通过该变量获取小球对象
                        var b=this;
                        setInterval(function() {
                            var lefts = b.div.offsetLeft;
                            var tops = b.div.offsetTop;
                            if(lefts + b.div.offsetWidth >= wrap.offsetWidth || lefts <= 0) {
                                b.speedX *= -1;
                            }

                            // 垂直状态
                            if(tops + b.div.offsetHeight >= wrap.offsetHeight || tops <= 0) {
                                b.speedY *= -1;
                            }

                            // 修改小球水平运动速度方向
                            lefts = lefts + b.speedX;
                            tops = tops + b.speedY;
                            //防止小球超出边界,造成小球出bug,但这样
                            if(lefts < 0) {
                                lefts = 0;
                            } else if(lefts > wrap.offsetWidth - b.div.offsetWidth) {
                                lefts = wrap.offsetWidth - b.div.offsetWidth;
                            }
                            if(tops < 0) {
                                tops = 0;
                            } else if(tops > wrap.offsetHeight - b.div.offsetHeight) {
                                tops = wrap.offsetHeight - b.div.offsetHeight;
                            }
                            b.div.style.left = lefts + 'px';
                            b.div.style.top = tops + 'px';
                        }, 30);
                    }
                    //创建小球对象
                for(var i = 0; i < 150; i++) {
                    var ball = new Ball();
                    ball.draw();
                    ball.move();
                }
            }
        </script>
    </head>

    <body>
        <!--小球移动的范围-->
        <div id="wrap">

        </div>
    </body>

</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,047评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,807评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,501评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,839评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,951评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,117评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,188评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,929评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,372评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,679评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,837评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,536评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,168评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,886评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,129评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,665评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,739评论 2 351

推荐阅读更多精彩内容