neingeist
/
30shooter
Archived
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

34 lines
681 B
HTML

12 years ago
<html>
<head>
<script type="text/javascript">
cur_step = 10;
t = -Math.PI/2;
function timed() {
var el = document.getElementById("herzle");
el.style.position = "absolute";
el.style.left = ( Math.cos(t) + 1)/2 * window.innerWidth;
el.style.top = ((Math.sin(t)*Math.cos(t)) + 1)/2 * window.innerHeight;
el.style.fontSize = (1.0 - Math.abs(Math.cos(t))) * 300;
t = t + 0.1;
if (t > 3*Math.PI/2) {
t = -Math.PI/2;
}
setTimeout("timed()", 100);
}
</script>
</head>
<body onload="timed()" >
<span id="herzle" style="font-size: 20pt; color: #ff00ff; font-family: helvetica, arial;">&lt;3</span>
</body>
</html>