Skip to content

Instantly share code, notes, and snippets.

@0x04
Last active June 3, 2020 15:28
Show Gist options
  • Save 0x04/5f5f282b306a9373ae3d3d73ef6c6641 to your computer and use it in GitHub Desktop.
Save 0x04/5f5f282b306a9373ae3d3d73ef6c6641 to your computer and use it in GitHub Desktop.
Show element by element: https://diana-adrianne.com/purecss-gaze/
document.querySelectorAll('.frame *')
.forEach((e, i) => {
e.style.visibility = 'hidden';
setTimeout(() => e.style.visibility = 'visible', i * 100);
});
@0x04
Copy link
Author

0x04 commented May 26, 2020

Result captured with ScreenToGif.

purecss-gaze

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment