Prosty przykład (z palca) na animację z wykorzystaniem setInterval()
Kod
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Przykładowy dokument</title>
<style type="text/css">
#abc{
background: red;
}
</style>
<script type="text/javascript">
var c = 0;
document.addEventListener("DOMContentLoaded", function(){
showtime = setInterval("animate()", 10);
}, false);
function animate(){
var abc = document.getElementById("abc");
var h = abc.offsetHeight;
if(c == 300){
clearInterval(showtime);
}
h++;
c++;
abc.style.height = h + "px";
}
</script>
</head>
<body>
<div id="abc">s</div>
</body>
</html>