Gernot Back: marquee: bei mouseover richtung ändern

Beitrag lesen

Hallo Gunnar,

Wozu dieses digitale Ungeziefer?

Sei doch kein Spaßverderber!

  
<html>  
<head>  
<title>hinher</title>  
<script language="JavaScript">  
[code lang=javascript]  
function wechsel (x) {  
if(x.direction=='left') {  
  x.direction='right';  
} else {  
  x.direction='left';  
}  

</script>
</head>
<body >
<marquee onmouseover="wechsel(this)
" direction="right">Hallo</marquee>
</body>
</html>
[/code]

Das funktioniert unter Win98 nicht nur mit IE6, sondern sogar auch mit Mozilla 1.7.2 und Firefox 1.0.4 !

Gruß Gernot