This commit is contained in:
parent
8870d89519
commit
819c98c014
BIN
website/assets/binkies/eye.gif
Normal file
BIN
website/assets/binkies/eye.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.1 KiB |
BIN
website/assets/binkies/insane.gif
Normal file
BIN
website/assets/binkies/insane.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
website/assets/binkies/piracy.gif
Normal file
BIN
website/assets/binkies/piracy.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 910 B |
|
@ -19,15 +19,32 @@ const binky = [
|
||||||
["https://sillylaird.nekoweb.org/", "sillylairdb.png"],
|
["https://sillylaird.nekoweb.org/", "sillylairdb.png"],
|
||||||
["https://2rin.nekoweb.org", "2rin.gif"],
|
["https://2rin.nekoweb.org", "2rin.gif"],
|
||||||
["https://status.cafe", "statuscafe.png"],
|
["https://status.cafe", "statuscafe.png"],
|
||||||
["https://windigone.nekoweb.org", "windigone.gif"]
|
["https://windigone.nekoweb.org", "windigone.gif"],
|
||||||
|
["https://eye.nekoweb.org", "eye.gif"],
|
||||||
|
["insane.gif", "piracy.gif"]
|
||||||
];
|
];
|
||||||
binky.forEach((z) => {
|
|
||||||
|
binky.forEach((z, i) => {
|
||||||
|
if(i == binky.length-1) {
|
||||||
|
z.forEach(g => {
|
||||||
|
const img = document.createElement("img");
|
||||||
|
|
||||||
|
img.src = `/assets/binkies/${g}`;
|
||||||
|
img.width = 88;
|
||||||
|
img.height = 31;
|
||||||
|
img.alt = `!! binkie !!`;
|
||||||
|
binkies.appendChild(img);
|
||||||
|
})
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const a = document.createElement("a");
|
const a = document.createElement("a");
|
||||||
a.href = z[0];
|
a.href = z[0];
|
||||||
a.ariaLabel = `${z[1]}'s website`;
|
a.ariaLabel = `${z[1]}'s website`;
|
||||||
a.className = "hasBadge";
|
a.className = "hasBadge";
|
||||||
|
|
||||||
const img = document.createElement("img");
|
const img = document.createElement("img");
|
||||||
|
|
||||||
img.src = `/assets/binkies/${z[1]}`;
|
img.src = `/assets/binkies/${z[1]}`;
|
||||||
img.width = 88;
|
img.width = 88;
|
||||||
img.height = 31;
|
img.height = 31;
|
||||||
|
|
Loading…
Reference in a new issue