Created
November 11, 2021 22:47
-
-
Save kriskowal/8d6362e901a76eb20157c181b69a4337 to your computer and use it in GitHub Desktop.
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> | |
<head> | |
<style> | |
* { | |
font-family: Helvetica; | |
font-size: 180px; | |
} | |
body { | |
padding: 50px; | |
} | |
hr { | |
border: solid 10px black; | |
margin: 100px 0; | |
} | |
</style> | |
<script> | |
let scrolling = false; | |
const scroll = () => { | |
if (scrolling) { | |
window.document.documentElement.scrollTop += 5; | |
} | |
requestAnimationFrame(scroll); | |
}; | |
scroll(); | |
window.onkeypress = event => { | |
if (event.key === ' ') { | |
event.preventDefault(); | |
event.stopPropagation(); | |
scrolling = !scrolling | |
} | |
}; | |
</script> | |
</head> | |
<body> | |
Hi. | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment