Upload files to "/"

This commit is contained in:
Kio 2025-01-31 22:23:14 +00:00
parent e036b38c4e
commit b0a671953d
5 changed files with 42 additions and 0 deletions

BIN
Rick.mp4 Normal file

Binary file not shown.

BIN
neofox.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

16
neofoxrain.js Normal file
View file

@ -0,0 +1,16 @@
'use strict';
alert('oh no! not another alert!');
function rain() {
let falling = document.getElementsByClassName('falling');
console.log('[info] there are ' + falling.length + ' things falling');
for (const el of falling) {
el.style.left = `${Math.random() * 100}%`;
el.style.top = `${Math.random() * 50}%`;
el.style.setProperty('--offset-angle', `${Math.random() * 360}deg`);
}
}
window.addEventListener('DOMContentLoaded', rain);

3
nextperson.html Normal file
View file

@ -0,0 +1,3 @@
<!-- the next persons page goes here
link it to the front somehow
we can make a huge chain of them itll be funny :3 -->

23
shopping.html Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping</title>
</head>
<body>
<noscript>
<h1>Kitsu Shares!</h1>
<p>Thank you for not using JavaScript!</p>
<p>$100 for 1 share</p>
<p>$200 for 2 share</p>
<small>there are 2<super>64</super> total shares</small>
</noscript>
<script>
window.location.replace("Rick.mp4")
</script>
</body>
</html>