Html Kod Siteniz ...
7-Araç Çubuğunda yazı </******><****** language="JavaScript"><!-- var x = 0 var speed = 70 var text = "===____----WELCOME TO WeBmAsTeR 79®----____=== " var course = 120 var text2 = text ******** Scroll() { window.status = text2.substring(0, text2.length) if (course < text2.length) { setTimeout("Scroll2()", speed) } else { text2 = " " + text2 setTimeout("Scroll()", speed); } } ******** Scroll2() { window.status = text2.substring(x, text2.length) if (text2.length - x == text.length) { text2 = text x = 0 setTimeout("Scroll()", speed); } else { x++ setTimeout("Scroll2()", speed); } } Scroll() //--> // --></******>
8-Buton Üstünde kayan yazı <****** language="Java******"> <!-- // please keep these lines on when you copy the source // made by: Nicolas - http://www.**********-page.com var speed = 100 var message = "WEBMASTER79 " var s = 0 var l = message.length document.write("<form name='btn'><input type='button' " +"name='sc' value='"+ message +"'></form>") ******** btnsc() { document.btn.sc.value = message.substring(s,l) + message.substring(0,s) s++ if (s >= l) { s = 0 } setTimeout("btnsc()",speed) } btnsc(); //--> </******>
9-Renk butonları <****** language="JavaScript"> <!-- // please keep these lines on when you copy the source // made by: Nicolas - http://www.**********-page.com ******** backbs(clr) { document.bgColor = clr } //--> </******> <form> <input type="button" value="Aqua" onclick="backbs('aqua')"> <input type="button" value="Yellow" onclick="backbs('yellow')"> <input type="button" value="orange" onclicke="backbs('orange')"> <input type="button" value="White" onclick="backbs('white')"> <input type="button" value="Gray" onclick="backbs('gray')"> </form></******>
10-Diyalog kutusu <FORM> <INPUT TYPE="button" VALUE="Butona bas ve gör" onClick='alert("WEBMASTER79'DASIN")'> <FORM></******>
11-Brovser bilgileri <center> <****** language="Java******"> <!-- // please keep these lines on when you copy the source // made by: Nicolas - http://www.**********-page.com document.write("You're using: <b>"+navigator.appName+" "+navigator.appVersion+"</b>"); //--> </******> </center></******>
12-Sağ tuş kilidi <****** language="Java******1.2"> <!-- // please keep these lines on when you copy the source // made by: Nicolas - http://www.**********-page.com var mymessage = "Ã&#339;zgünüm Sağ Tuş Kullanmanız Engellenmiştir."; ******** rtclickcheck(keyp){ if (navigator.appName == "Netscape" &amp;&amp; keyp.which == 3) { alert(mymessage); return false; } if (navigator.appVersion.indexOf("MSIE") != -1 &amp;&amp; event.button == 2) { alert(mymessage); return false; } } document.onmousedown = rtclickcheck //--> </******>