Kieselnator: Problem mit dem Löschen eines Intervalls

Beitrag lesen

hallo leute!

danke für eure antworten...

mit diesen änderungen klappt's:

  
<html>  
<head>  
<script language="Javascript" type="text/javascript">	<!--  
  
	var count = 2000;  
	function dies(){  
		window.clearInterval(aktiv);  
		count = count-500;  
		aktiv = window.setInterval("jump()", Math.round(count));  
	}  
		var aktiv = window.setInterval("jump()", Math.round(count));  
	  
	function jump(){  
		var height = document.body.offsetHeight-100;  
		var width = document.body.offsetWidth-100;  
		var zufallhoehe = Math.random()*height+1;  
		var zufallbreite = Math.random()*width+1;  
		document.getElementById("box").style.top = zufallhoehe;  
		document.getElementById("box").style.left = zufallbreite;  
	}  
  
//-->  
</script>  
<style>  
.box {position:absolute; background: green; color: orangered; width: 100px; height: 100px; top:100px; left: 100px;}  
</style>  
</head>  
<body>  
<div class="box" id="box"><a href="#" onclick="javascript:dies();">Hier klicken!!!</a></div>  
</body>  
</html>  

Danke vielmals...

jetzt haben wir ein kleines mini-game...