Skip to content

Instantly share code, notes, and snippets.

@ymendel
Last active December 15, 2015 17:49
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ymendel/5298947 to your computer and use it in GitHub Desktop.
Save ymendel/5298947 to your computer and use it in GitHub Desktop.
marquee fishtank — as seen at http://citizenx.cx/fishtank/
<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>&lt;&gt;&lt;</marquee>
<marquee id="fish2" scrollamount=3>&lt;&gt;&lt;</marquee>
<marquee id="fish3" direction="right" scrollamount=6>&gt;&lt;&gt;</marquee>
<marquee id="fish4" scrollamount=10>&lt;&gt;&lt;</marquee>
<marquee id="fish5" direction="right" scrollamount=5>&gt;&lt;&gt;</marquee>
<marquee id="fish6" scrollamount=6>&lt;&gt;&lt;</marquee>
<marquee id="fish7" direction="right" scrollamount=8>&gt;&lt;&gt;</marquee>
<br><br>
<marquee id="crab" behavior="alternate" scrollamount="4"> (\/)O_o(\/) </marquee>
</div>
</body>
</html>
@gjtorikian
Copy link

This is the greatest block of code ever penned.

@ScarlettSparks
Copy link

😍

@muan
Copy link

muan commented Apr 27, 2014

Amazing.

@nedzen
Copy link

nedzen commented Feb 14, 2015

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