Last active
January 29, 2023 10:50
-
-
Save shango420/32f09ea02195b2eabf85903ea090d2da to your computer and use it in GitHub Desktop.
oXZaBY
This file contains 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
<input type="button" value="start countdown" onclick="countdown(4)"> |
This file contains 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
function countdown(n) { | |
while (n --> 0) | |
alert(n); | |
blastoff(); | |
} | |
function blastoff() { document.body.className = "go"; } |
This file contains 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
body.go { | |
background: url(https://38.media.tumblr.com/c540bc0f4ed932580f3a1b3366232abc/tumblr_ncom5xy6bM1qejpvyo1_500.gif); | |
background-size: cover; | |
} |
--->
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Espero tener algun resultado