Deutsch
<!--要完成此效果需要两个步骤 第一步:把如下代码加入到<head>区域中--> <style type="text/css"> .menulinks {position:relative;} #menucont a {Farbe:#006699; Schriftstärke:fett; text-decoration:none;} #menucont a:hover{color:#ff0000; Schriftstärke:fett; text-decoration:underline overline; text-transform: Uppercase;} </style> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin nSpace=5 // wie viele Leerzeichen maximal zwischen den einzelnen Buchstaben liegen nSpeed=100 // die Geschwindigkeit des AnimationstimersLSM=null; function LetterSpacingMenu() { if(document.getElementById){ lnks = Math.floor(Math.random()*lnk.length); letterSpacing = Math.floor(Math.random()*nSpace); lnk[lnks].style.letterSpacing = letterSpacing + "px"; timerLSM = setTimeout("LetterSpacingMenu()", nSpeed); } } function StopMenu() { if(document.getElementById) { clearTimeout(timerLSM); for(i=0;i<lnk.length;i++) lnk[i].style.letterSpacing = 0 + "px"; } } function LSMenuInit() { if(document.getElementById) { lnk = document.getElementById("menucont").getElementsByTagName("a"); cnt = document.getElementById("menucont"); cnt.style.textAlign= "center"; cnt.onmouseover=StopMenu; cnt.onmouseout=LetterSpacingMenu; LetterSpacingMenu(); } } onload=LSMenuInit; // End --> </script> <!--第二步:把如下代码加入到<body>区域中--> <div id="menucont"> <a href="#" id="a1 " class="menulinks" title="was ist neu">was ist neu</a><br> <a href="#" id="a2" class="menulinks" title="about this site">über diese Site </a><br> <a href="#" id="a3" class="menulinks" title="dhtml scripts">dhtml-Skripte</a><br> <a href="#" id=" a4" class="menulinks" title="dhtml-Tutorials">Dhtml-Tutorials</a><br> <a href="#" id="a5" class="menulinks" title="dhtml-Links">Dhtml-Links< /a><br> <a href="#" id="a6" class="menulinks" title="Diese Website bewerben">Diese Website bewerben</a><br> <a href="#" id= "a7" class="menulinks" title="Kontaktieren Sie uns">Kontaktieren Sie uns</a> </div>