Skip to content

Instantly share code, notes, and snippets.

@shango420
Last active January 29, 2023 10:50
Show Gist options
  • Save shango420/32f09ea02195b2eabf85903ea090d2da to your computer and use it in GitHub Desktop.
Save shango420/32f09ea02195b2eabf85903ea090d2da to your computer and use it in GitHub Desktop.
oXZaBY
<input type="button" value="start countdown" onclick="countdown(4)">
function countdown(n) {
while (n --> 0)
alert(n);
blastoff();
}
function blastoff() { document.body.className = "go"; }
body.go {
background: url(https://38.media.tumblr.com/c540bc0f4ed932580f3a1b3366232abc/tumblr_ncom5xy6bM1qejpvyo1_500.gif);
background-size: cover;
}
@shango420
Copy link
Author

Espero tener algun resultado

@shango420
Copy link
Author

--->

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