美文网首页
class es6面向对象,生成随机大小,颜色,位置的小球

class es6面向对象,生成随机大小,颜色,位置的小球

作者: 随风飞2019 | 来源:发表于2021-05-20 09:54 被阅读0次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>生成随机大小,颜色,位置的小球</title>
    <style>
        .btn {
            width: 80px;
            height: 20px;
            text-align: center;
            line-height: 20px;
            border-radius: 6px;
            background-color: #eeee;
            cursor: pointer;
        }

        .app {
            width: 1000px;
            height: 800px;
            border: 1px solid red;
            border-radius: 12px;
            position: relative;
        }

        .boo {
            display: inline-block;
            border-radius: 50%;
            position: absolute;
        }
    </style>
</head>
<body>
<div class="btn">创建小球</div>
<div class="app"></div>
<script>
    class Boo {
        constructor() {
            this.init()
        }
        init() {
            // 创建一个小球
            // 小球大小随机,背景色随机,位置随机
            this.createBol()
        }

        getRandomWidthHeight() {
            return Math.floor(Math.random() * 51);
        }

        getRandomLeft() {
            return Math.round(Math.random()*999+1);
        }

        getRandomTop() {
            return Math.round(Math.random()*799+1);
        }

        getRandomRgb() {
            let r = Math.floor(Math.random()*256)
            let g = Math.floor(Math.random()*256)
            let b = Math.floor(Math.random()*256)
            let rgb = `rgb(${r},${g},${b})`
            return rgb
        }

        createBol() {
            let app = document.getElementsByClassName('app')[0]
            let boo = document.createElement('span')
            let wh = this.getRandomWidthHeight() + 'px'
            boo.style.width = wh
            boo.style.height = wh
            boo.className='boo'
            boo.style.backgroundColor = this.getRandomRgb()
            boo.style.left= this.getRandomLeft() + 'px'
            boo.style.top= this.getRandomTop() + 'px'
            app.append(boo)
        }
    }
    
    let btn = document.getElementsByClassName('btn')[0]
    btn.addEventListener('click', function () {
        let boo = new Boo(20, 30)
    })
</script>
</body>
</html>
创建随机大小的数字
Math.round(Math.random()*(max-min)+min);
创建随机背景色
getRandomRgb() {
            let r = Math.floor(Math.random()*256)
            let g = Math.floor(Math.random()*256)
            let b = Math.floor(Math.random()*256)
            let rgb = `rgb(${r},${g},${b})`
            return rgb
}

相关文章

  • class es6面向对象,生成随机大小,颜色,位置的小球

  • day12作业

    使用Pygame,做一个小游戏。鼠标点击的位置生成一个随机大小、颜色和运动方向的小球,小球碰撞后,半径大的小球吃掉...

  • 【ES6】class的基本使用与继承

    生成实例对象的传统方法是通过构造函数 定义类 ES6 引入了class(类),让javascript的面向对象编程...

  • ES6面向对象

    1、ES6面向对象: class(类) 构造函数 对象 实例对象 ES5面向对象是模拟面向对象。 2、继...

  • JavaScript之面向对象编程

    五、面向对象编程 目录:面向对象原型继承、面向对象class继承(ES6引入的) 1.面向对象原型继承 类:模板 ...

  • ES6 新特性9 -class的基本使用

    在ES6 之前生成实例对象通过构造函数和原型链来实现。 ES6中提供class 创建实例。更类似于java等面向对...

  • 关于class

    关于class ES6 通过class 关键字,可以定义类。新的class写法让对象原型写法更加清晰,更像面向对象...

  • 实用R配色技巧

    随机生成点的大小、颜色和位置,分别用空心点和实心点画图。 par(mar = c(0.2, 0.2, 0.2, 0...

  • JavaScript OOP篇

    参考资料 JavaScript面向对象简介 ES6对象的拓展 ES6 class 前言 本篇主要介绍 JavaSc...

  • canvas-透明球案例

    一、分析思路 1.1随机生成球1.1.1球的大小1.1.2球的颜色1.1.3球心的位置1.1.4每个球的步长(x,...

网友评论

      本文标题:class es6面向对象,生成随机大小,颜色,位置的小球

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