Created
November 2, 2020 09:07
-
-
Save elwinschmitz/fe2b1f4548d6de424bbc598a1a06a68d to your computer and use it in GitHub Desktop.
Visual timer / progress-meter / hourglass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<title>⌛️</title> | |
<style> | |
:root { | |
--timespan: calc(1 * 60s); | |
} | |
html, body { | |
height: 100%; | |
background: black; | |
margin: 0; | |
} | |
body::after { | |
content: ''; | |
display: block; | |
height: 0; | |
background: gold; | |
transition: height var(--timespan) linear; | |
} | |
body.run::after { | |
height: 100%; | |
} | |
</style> | |
<body onclick="document.body.classList.toggle('run')"></body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment