console
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
background-color: #000;
}
.ball {
position: absolute;
border-radius: 50%;
}
</style>
</head>
<body>
<script>
function Ball(x, y) {
this.x = x;
this.y = y;
this.r = 20;
this.color = colorArr[parseInt(Math.random() * colorArr.length)];
this.opacity = 1;
do {
this.dX = parseInt(Math.random() * 20) - 10
this.dY = parseInt(Math.random() * 20) - 10
} while (this.dY == 0 && this.dX == 0);
this.init();
ballArr.push(this);
}
Ball.prototype.init = function () {
this.dom = document.createElement('div');
this.dom.className = 'ball';
this.dom.style.width = this.r * 2 + 'px';
this.dom.style.height = this.r * 2 + 'px';
this.dom.style.left = this.x - this.r + 'px';
this.dom.style.top = this.y - this.r + 'px';
this.dom.style.backgroundColor = this.color;
document.body.appendChild(this.dom);
}
Ball.prototype.updata = function () {
this.x += this.dX;
this.y += this.dY;
this.r += 0.2;
this.opacity -= 0.005;
this.dom.style.width = this.r * 2 + 'px';
this.dom.style.height = this.r * 2 + 'px';
this.dom.style.left = this.x - this.r + 'px';
this.dom.style.top = this.y - this.r + 'px';
this.dom.style.backgroundColor = this.color;
this.dom.style.opacity = this.opacity;
if (this.opacity <= 0) {
for (var i = 0; i < ballArr.length; i++) {
if (ballArr[i] == this) {
ballArr.splice(i, 1);
}
}
document.body.removeChild(this.dom);
}
};
var ballArr = [];
var colorArr = ['#66CCCC', '#CCFF66', '#FF99CC', '#FF6666',
'#CC3399', '#FF6600'
];
setInterval(function () {
for (var i = 0; i < ballArr.length; i++) {
ballArr[i].updata();
}
}, 1);
document.onmousemove = function (e) {
var x = e.clientX;
var y = e.clientY;
new Ball(x, y);
};
</script>
</body>
</html>