-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvas.js
138 lines (109 loc) · 3.14 KB
/
canvas.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
var canvas = document.querySelector('canvas');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
var c = canvas.getContext('2d');
// for(var i = 0; i < 500; i++){
// var x = Math.random() * window.innerWidth;
// var y = Math.random() * window.innerHeight;
// function getRandomColor() {
// var letters = '0123456789ABCDEF';
// var color = '#';
// for (var i = 0; i < 6; i++) {
// color += letters[Math.floor(Math.random() * 16)];
// }
// return color;
// }
// c.beginPath();
// c.arc(x, y, 30, 0, Math.PI * 2, false);
// c.strokeStyle = getRandomColor();
// c.stroke();
// }
var mouse = {
x: undefined,
y: undefined
}
var maxRadius = 35;
window.addEventListener('mousemove', function (event) {
mouse.x = event.x;
mouse.y = event.y;
})
window.addEventListener('resize', function () {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
init();
})
var colorarray = [
// /*1*/'azure',
// /*2*/ '#95fe78',
// /*3*/ '#f5ff6d',
// /*4*/ '#BE8C63',
// /*5*/'#ff6868',
// /*6*/'#A85CF9',
// /*7*/ 'cyan',
// /*8*/ '#FCF69C',
// /*9*/ '#55D8C1',
// /*10*/ '#FF6FB5',
// /*11*/ '#AB46D2',
/*12*/ '#247881',
/*13*/ '#43919B',
/*14*/ '#30AADD',
/*15*/ '#00FFC6'
//COLOR COMBO - [1,5,6], [8.9.10.11]
];
function getRandomColor() {
var color = colorarray[Math.floor(Math.random() * colorarray.length)]
return color;
}
function Circle(x, y, dx, dy, r) {
this.x = x;
this.y = y;
this.dx = dx;
this.dy = dy;
this.r = r;
this.color = getRandomColor();
this.draw = function () {
c.beginPath();
c.arc(this.x, this.y, this.r, 0, Math.PI * 2, false);
c.strokeStyle = 'black';
c.stroke();
c.fillStyle = this.color;
c.fill();
}
this.update = function () {
if (this.x + this.r > innerWidth || this.x - this.r < 0) this.dx = -this.dx;
if (this.y + this.r > innerHeight || this.y - this.r < 0) this.dy = -this.dy;
this.x = this.x + this.dx;
this.y = this.y + this.dy;
if (mouse.x - this.x < 30 && mouse.x - this.x > -50
&& mouse.y - this.y < 30 && mouse.y - this.y > -50) {
if (this.r < maxRadius) {
this.r += 0.8;
}
}
else if (this.r > r) {
this.r -= 0.6;
}
this.draw();
}
}
var array = []
function init() {
array = [];
for (var i = 0; i < 1000; i++) {
var r = Math.random() * 4 + 1;
var x = Math.random() * (innerWidth - r * 2) + r;
var dx = (Math.random() - 0.5);
var y = Math.random() * (innerHeight - r * 2) + r;
var dy = (Math.random() - 0.5);
array.push(new Circle(x, y, dx, dy, r));
}
}
function animate() {
requestAnimationFrame(animate);
c.clearRect(0, 0, innerWidth, innerHeight);
for (var i = 0; i < array.length; i++) {
array[i].update();
}
}
animate();
init()