This commit is contained in:
parent
caa7aaa02a
commit
d7f79d0b4c
BIN
website/assets/binkies/bee.png
Normal file
BIN
website/assets/binkies/bee.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
|
@ -22,6 +22,7 @@ const binky = [
|
|||
["https://windigone.nekoweb.org", "windigone.gif"],
|
||||
["https://eye.nekoweb.org", "eye.gif"],
|
||||
["https://yumeo.nekoweb.org", "yumeo.gif"],
|
||||
["https://bee.nekoweb.org/", "bee.png"],
|
||||
["insane.gif", "piracy.gif", "dsb.gif", "universe.gif"],
|
||||
];
|
||||
|
||||
|
|
|
@ -30,14 +30,17 @@ class Particle {
|
|||
this.y = y;
|
||||
this.id = Math.random();
|
||||
this.angle = 2 * Math.PI * this.id;
|
||||
this.color =
|
||||
// trans flag colors
|
||||
this.color = ["#5BCEFA", "#F5A9B8", "#FFFFFF"][Math.floor(Math.random() * 3)]
|
||||
// random pastel color with HSL
|
||||
/*this.color =
|
||||
"hsl(" +
|
||||
360 * Math.random() +
|
||||
"," +
|
||||
(25 + 70 * Math.random()) +
|
||||
"%," +
|
||||
(85 + 10 * Math.random()) +
|
||||
"%)";
|
||||
"%)";*/
|
||||
this.style = Math.random() < 0.5 ? "-" : Math.random() > 0.5 ? "+" : "*";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue