2sleap

2sleap's profile picture

"last call bryson tiller"

Last active:

Mood: ᶻ 𝗓 𐰁

View my: Blog | Forum Topics

SpaceHey URL:

https://spacehey.com/2sleap

2sleap's Interests

General

Music

Movies

Television

Books

umibe no onnanoko (finished), goodnight pun-pun -reading

Heroes

2sleap's Latest Blog Entries [View Blog]

There are no Blog Entries yet.

2sleap's Blurbs

About me:

Who I'd like to meet:

2sleap's Friends Comments

Displaying 0 of 0 comments ( View all | Add Comment )

Intro GIF with click to close

Welcome to My Profile

Your normal site content goes here.

const intro = document.getElementById('intro'); const content = document.getElementById('mainContent'); const FADE_MS = 1000; // matches CSS transition function closeIntro() { intro.classList.add('hidden'); // start fade setTimeout(() => { intro.style.display = 'none'; content.style.visibility = 'visible'; document.documentElement.style.overflow = ''; document.body.style.overflow = ''; }, FADE_MS); } // Close when clicked anywhere on the intro intro.addEventListener('click', closeIntro);