-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (119 loc) · 3.6 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Night sky with supernovas</title>
<style type="text/css">
body{
background-color: black;
margin:0px;
}
</style>
</head>
<body onresize="refreshSizeCanvas()">
<button onclick="aumentarVelocidade(true)">More Explosions</button>
<button onclick="aumentarVelocidade(false)">Less Explosions</button>
<button onclick="mudarPadrao('circulo')">Circles</button>
<button onclick="mudarPadrao('quadrado')">Squares</button>
<canvas id="CanvasPrincipal"></canvas>
</body>
<script>
var canvas = document.getElementById('CanvasPrincipal');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
var c = canvas.getContext('2d');
c.fillStyle = "#FFF";
var velocidade = 100;
var atual;
var tipo = 'circulo';
function estrelaQuadrado() {
var X = Math.floor(Math.random() * window.innerWidth) + 1;
var Y = Math.floor(Math.random() * window.innerHeight) + 1;
var size = 0;
var t = 0;
var intervalo = window.setInterval(() =>{
c.clearRect(X-1,Y-1,size+2,size+2);
c.fillRect(X,Y,size,size);
if(t > 5)
size--
else
size++
if(t == 10){
window.clearInterval(intervalo);
c.clearRect(X-1,Y-1,size+2,size+2);
}
else
t++;
},100)
}
function estrelaCirculo() {
var X = Math.floor(Math.random() * window.innerWidth) + 1;
var Y = Math.floor(Math.random() * window.innerHeight) + 1;
var size = 0;
var t = 0;
var intervalo = window.setInterval(() =>{
c.clearRect(X-10,Y-10,size+12,size+12);
c.beginPath();
c.arc(X,Y,size,0,Math.PI * 2,false);
c.strokeStyle = 'white';
c.stroke();
if(t > 5)
size--
else
size++
if(t == 10){
window.clearInterval(intervalo);
c.clearRect(X-10,Y-10,size+12,size+12);
}
else
t++;
},100)
}
function refreshSizeCanvas(){
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
}
function aumentarVelocidade(aumentar){
if(aumentar){
if(this.velocidade > 10 ) this.velocidade -= 10
window.clearInterval(atual);
if (tipo === 'circulo')
this.atual = window.setInterval(() =>{
estrelaCirculo();
},this.velocidade)
if (this.tipo === 'quadrado')
this.atual = window.setInterval(() =>{
estrelaQuadrado();
},this.velocidade)
}
else{
if(this.velocidade < 1000 ) this.velocidade += 10
window.clearInterval(atual);
if (tipo === 'circulo')
this.atual = window.setInterval(() =>{
estrelaCirculo();
},this.velocidade)
if (this.tipo === 'quadrado')
this.atual = window.setInterval(() =>{
estrelaQuadrado();
},this.velocidade)
}
}
function mudarPadrao(padrao){
if(padrao == 'quadrado'){
tipo = 'quadrado'
window.clearInterval(atual);
this.atual = window.setInterval(() =>{
estrelaQuadrado()
},this.velocidade)
}
if(padrao == 'circulo'){
tipo = 'circulo'
window.clearInterval(atual);
this.atual = window.setInterval(() =>{
estrelaCirculo()
},this.velocidade)
}
}
</script>
</html>