Last active
December 15, 2015 17:49
-
-
Save ymendel/5298947 to your computer and use it in GitHub Desktop.
marquee fishtank — as seen at http://citizenx.cx/fishtank/
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
<html> | |
<head> | |
<title>Marquee Fishtank</title> | |
<style> | |
#fishtank { | |
width: 350px; | |
background-color: aqua; | |
} | |
#fish1 { color: red } | |
#fish2 { color: orange } | |
#fish3 { color: blue } | |
#fish4 { color: purple } | |
#fish5 { color: green } | |
#fish6 { color: gold } | |
#fish7 { color: brown } | |
#crab { color: red } | |
</style> | |
</head> | |
<body> | |
<div id="fishtank"> | |
<marquee id="fish1" scrollamount=7><><</marquee> | |
<marquee id="fish2" scrollamount=3><><</marquee> | |
<marquee id="fish3" direction="right" scrollamount=6>><></marquee> | |
<marquee id="fish4" scrollamount=10><><</marquee> | |
<marquee id="fish5" direction="right" scrollamount=5>><></marquee> | |
<marquee id="fish6" scrollamount=6><><</marquee> | |
<marquee id="fish7" direction="right" scrollamount=8>><></marquee> | |
<br><br> | |
<marquee id="crab" behavior="alternate" scrollamount="4"> (\/)O_o(\/) </marquee> | |
</div> | |
</body> | |
</html> |
😍
Amazing.
who even thought about anything like this ! mindblown
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is the greatest block of code ever penned.