Reset author

This commit is contained in:
g* 2025-06-12 09:39:35 +02:00
commit 2fcf9bfdda
108 changed files with 3642 additions and 0 deletions

11
docs/src/js/index-text.js Normal file
View file

@ -0,0 +1,11 @@
document.getElementById('visual-hover').onmouseover = function () {
document.getElementById('hover-text').innerHTML = "a thousand words at a time";
};
document.getElementById('technical-hover').onmouseover = function () {
document.getElementById('hover-text').innerHTML = "in zeroes, ones, and other numbers";
};
document.getElementById('writing-hover').onmouseover = function () {
document.getElementById('hover-text').innerHTML = "letter by letter, word by word";
};

12
docs/src/js/loader.js Normal file
View file

@ -0,0 +1,12 @@
document.getElementById('loader').style.display = 'block';
function fadeOutLoader() {
const loader = document.getElementById('loader');
loader.classList.add('fade-out');
setTimeout(() => {
loader.remove();
}, 1000);
}
setTimeout(fadeOutLoader, 2500);