Hmm habe es versucht einzusetzten aber leider klappt sich jetzt der Layer nach 10 sek zu ?
<script language="JavaScript" type="text/javascript">
var pixel = 0;
function animation() {
var elem = document.getElementById("ani").style;
elem.height = pixel + "px";
pixel = pixel + 5;
if ( pixel == 200 ) { // Wenn der Bereich höher als 200px wird, dann...
clearInterval(neu);
}
}
window.onload = function() { neu = window.setTimeout("animation()", 10000) };
</script>
Lg Malan