Skip to content

Latest commit

 

History

History
62 lines (55 loc) · 2.34 KB

index.markdown

File metadata and controls

62 lines (55 loc) · 2.34 KB
layout
default
<style> .boldFancyText { font-family: "Lobster", Times, serif; font-size: 24px; } </style> <style> .fancySharpieText { font-family: "Lobster", Times, serif; font-size: 24px; } </style>

<script> var i = -1; var txt = 'Hello, World!'; var speed = 500;

function typeWriter() { if (i < txt.length) { document.getElementById("demo").innerHTML += txt.charAt(i); i++; if(i == 1) { speed = 55; } setTimeout(typeWriter, speed); } }

this.typeWriter(); </script>

I'm Superkat32a.k.a Kat.
I enjoy making high quality, open-source Minecraft mods for Fabric.
I exclusively upload them to Modrinth.
<script> const fadeIns = document.querySelectorAll('.fade-in'); const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.intersectionRatio > 0) { setTimeout(() => { entry.target.style.opacity = '1'; }, 1500); // set a 1 second delay before fading in observer.unobserve(entry.target); // stop observing the element after it fades in } }); }); fadeIns.forEach(fadeIn => { observer.observe(fadeIn); }); </script>