Sign In
Sign-Up
Welcome!
Close
Would you like to make this site your homepage? It's fast and easy...
Yes, Please make this my home page!
No Thanks
Don't show this to me again.
Close
-Sağ tuş ile açılan menü
<style> <!-- .skin0{ position:absolute; width:200px; border:2px solid black; background-color:menu; font-family:Verdana; line-height:20px; cursor:default; visibility:hidden; } .skin1{ cursor: default; font: menutext; position: absolute; width: 165px; background-color: menu; border: 1 solid buttonface; visibility:hidden; border: 2 outset buttonhighlight; } .menuitems{ padding-left:15px; padding-right:10px; } --> </style> <script language="JavaScript1.2"> //set the skin of the menu (0 or 1, with 1 rendering a default Windows menu like skin) var menuskin=1 //set this variable to 1 if you wish the URLs of the highlighted menu to be displayed in the status bar var display_url=0 function showmenuie5(){ //Find out how close the mouse is to the corner of the window var rightedge=document.body.clientWidth-event.clientX var bottomedge=document.body.clientHeight-event.clientY //if the horizontal distance isn't enough to accomodate the width of the context menu if (rightedge<ie5menu.offsetWidth) //move the horizontal position of the menu to the left by it's width ie5menu.style.left=document.body.scrollLeft+event.clientX-ie5menu.offsetWidth else //position the horizontal position of the menu where the mouse was clicked ie5menu.style.left=document.body.scrollLeft+event.clientX //same concept with the vertical position if (bottomedge<ie5menu.offsetHeight) ie5menu.style.top=document.body.scrollTop+event.clientY-ie5menu.offsetHeight else ie5menu.style.top=document.body.scrollTop+event.clientY ie5menu.style.visibility="visible" return false } function hidemenuie5(){ ie5menu.style.visibility="hidden" } function highlightie5(){ if (event.srcElement.className=="menuitems"){ event.srcElement.style.backgroundColor="highlight" event.srcElement.style.color="white" if (display_url==1) window.status=event.srcElement.url } } function lowlightie5(){ if (event.srcElement.className=="menuitems"){ event.srcElement.style.backgroundColor="" event.srcElement.style.color="black" window.status='' } } function jumptoie5(){ if (event.srcElement.className=="menuitems"){ if (event.srcElement.getAttribute("target")!=null) window.open(event.srcElement.url,event.srcElement.getAttribute("target")) else window.location=event.srcElement.url } } </script> </head> <body BGCOLOR="00005e"> <!--[if IE]> <div id="ie5menu" class="skin0" onMouseover="highlightie5()" onMouseout="lowlightie5()" onClick="jumptoie5()"> <div class="menuitems" url="http://www.arifal.cjb.net">PHP</div> <div class="menuitems" url="http://www.arifal.cjb.net">Mysql</div> <div class="menuitems" url="http://www.arifal.cjb.net">Flash</div> <div class="menuitems" url="http://www.arifal.cjb.net">CSS</div> <div class="menuitems" url="http://www.arifal.cjb.net">Design</div> <div class="menuitems" url="http://www.arifal.cjb.net">JavaScript</div> <hr> <div class="menuitems" url="mailto:ufuk_1999@yahoo.com ">Mail</div> </div> <![endif]--> <script language="JavaScript1.2"> if (document.all&&window.print){ if (menuskin==0) ie5menu.className="skin0" else ie5menu.className="skin1" document.oncontextmenu=showmenuie5 document.body.onclick=hidemenuie5 } </script>
-Sayfada saat [text İçinde]
<script language="JavaScript1.2"> function zaman() { var saat,h,m,s,son; saat=new Date(); h=saat.getHours(); m=saat.getMinutes(); s=saat.getSeconds(); son=h.toString()+":"+m.toString()+":"+s.toString(); document.ilk.durum.value=son; yaz=setTimeout("zaman()",1000); } </script>
-Sayfada saat
<div id="Clock" align="center" style="font-family:times new roman; font-size: 18; color:red"></div> <script language> function tick() { var saat, dakika, Saniye, Ek; var bugun; bugun = new Date(); Saat = bugun.getHours(); dakika = bugun.getMinutes(); Saniye = bugun.getSeconds(); if (Saat == 0) { Saat = "12:"; Ek = "Gece"; } else if (Saat < 12) { Saat = Saat+":"; Ek = "Sabah"; } else if (Saat == 12) { Saat = "12:"; Ek = "Öğlen"; } else { Saat = Saat - 12 Saat = Saat + ":"; Ek = "Akşam"; } if (dakika < 10) { dakika = "0"+dakika+":"; } else { dakika = dakika+":"; } if (Saniye < 10) { Saniye = "0"+Saniye+" "; } else { Saniye = Saniye+" "; } timeString = Saat+dakika+Saniye+Ek; Clock.innerHTML = timeString; window.setTimeout("tick();", 100); } window.onload = tick; </script>
-Sayfada kalış süresi
<script> <!-- /*By George Chiang. (WA's ultimate JavaScript tutorial and free JavaScripts site!) http://www.wsabstract.com Credit MUST stay intact for use*/ var milisec=0 var seconds=0 document.d.d2.value='0' function display(){ if (milisec>=9){ milisec=0 seconds+=1 } else milisec+=1 document.d.d2.value=seconds+"."+milisec setTimeout("display()",100) } display() //--> </script>
-Statusbarda Tarih-Saat
<script> // Microweb script code. function display_time_in_status_line() { var d = new Date(); // month day, year hours:minutes:seconds var y = d.getYear(); // get current year var h = d.getHours(); // extract hours: 0 to 23 var m = d.getMinutes(); // extract minutes: 0 to 59 var s = d.getSeconds(); // extract seconds: 0 to 59 var mo = d.getMonth() + 1; // extract months: January to December var da = d.getDate(); // extract days: 1 to 31 var ampm = (h >= 12)?"PM":"AM"; // is it am or pm? if (h > 12) h -= 12; // convert 24-hour format to 12-hour if (h == 0) h = 12; // convert 0 o'clock to midnight if (m < 10) m = "0" + m; // convert 0 minutes to 00 minutes, etc. var t = mo + '/' + da + '/' + y + ' ' + h + ':' + m + ':' + s + ' ' + ampm; // put it all together defaultStatus = t; // display it in the status line // arrange to do it again in 1 second. setTimeout("display_time_in_status_line()", 1000); // 1000 ms in 1 second } </script>
-Statusbarda kayan yazı
<script> <!-- function scrollit(seed) { var m1 = " ARİFAL A HOŞGELDİNİZ "; var m2 = " İSTEK VE TAVSİYELERİNİZİ MUTLAKA İLETİN "; var m3 = " İRTİBATLARINIZ İÇİN MAİL ADRESİ "; var m4 = " arifal@www.com "; var msg=m1+m2+m3+m4; var out = " "; var c = 1; if (seed > 100) { seed--; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else if (seed <= 100 && seed > 0) { for (c=0 ; c < seed ; c++) { out+=" "; } out+=msg; seed--; window.status=out; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else if (seed <= 0) { if (-seed < msg.length) { out+=msg.substring(-seed,msg.length); seed--; window.status=out; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else { window.status=" "; timerTwo=window.setTimeout("scrollit(100)",75); } } } //--> </script>
-Sayfada sayaç
r
<script language="Javascript"> <!-- function getCookieVal (offset) { var endstr = document.cookie.indexOf (";", offset); if (endstr == -1) endstr = document.cookie.length; return unescape(document.cookie.substring(offset, endstr)); } function GetCookie (name) { var arg = name + "="; var alen = arg.length; var clen = document.cookie.length; var i = 0; while (i < clen) { var j = i + alen; if (document.cookie.substring(i, j) == arg) return getCookieVal (j); i = document.cookie.indexOf(" ", i) + 1; if (i == 0) break; } return null; } function SetCookie (name, value) { var argv = SetCookie.arguments; var argc = SetCookie.arguments.length; var expires = (argc > 2) ? argv[2] : null; var path = (argc > 3) ? argv[3] : null; var domain = (argc > 4) ? argv[4] : null; var secure = (argc > 5) ? argv[5] : false; document.cookie = name + "=" + escape (value) + ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + ((path == null) ? "" : ("; path=" + path)) + ((domain == null) ? "" : ("; domain=" + domain)) + ((secure == true) ? "; secure" : ""); } function DeleteCookie(name) { var exp = new Date(); FixCookieDate (exp); // Correct for Mac bug exp.setTime (exp.getTime() - 1); // This cookie is history var cval = GetCookie (name); if (cval != null) document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString(); } var expdate = new Date(); var num_visits; expdate.setTime(expdate.getTime() + (5*24*60*60*1000)); if (!(num_visits = GetCookie("num_visits"))) num_visits = 0; num_visits++; SetCookie("num_visits",num_visits,expdate); //--> </script> <script language="Javascript"> <!-- document.write("<font face=\"Comic Sans MS\"><font size=2><font color=FFFFFF>Ziyaretci Sayisi "+num_visits+"</font></font></font>"); //--> </script>
-Daktilo yazısı
<script language="Javascript1.2"> <!-- // made by: Nicolas - http://www.javascript-page.com var tags_before_clock = "<big>"; var tags_after_clock = "</big>"; var speed = 100; var speed2 = 2000; function initArray() { this.length = initArray.arguments.length; for (var i = 0; i < this.length; i++) { this[i] = initArray.arguments[i]; } } var mymessage = new initArray( "Arifal Web Hizmetleri !", "Şimdi Daha Hızlı", "Daha İnteraktif", "Daha Geniş Kitleye Hitap Ediyor", "www.arifal.cjb.net" ); var mymessage2 = mymessage; var x = 0; var y = 0; if(navigator.appName == "Netscape") { document.write('<layer id="ticker"></layer><br>'); } if (navigator.appVersion.indexOf("MSIE") != -1){ document.write('<span id="ticker"></span><br>'); } function upticker(){ if (y > mymessage2.length - 1) { y = 0; setTimeout("upticker()",speed); } else{ if (x > mymessage2[y].length) { mymessage = mymessage2[y]; x = 0; y++; setTimeout("upticker()",speed2); } else { mymessage = mymessage2[y].substring(0,x++); setTimeout("upticker()",speed); } if(navigator.appName == "Netscape") { document.ticker.document.write(tags_before_clock+mymessage+tags_after_clock); document.ticker.document.close(); } if (navigator.appVersion.indexOf("MSIE") != -1){ ticker.innerHTML = tags_before_clock+mymessage+tags_after_clock; } } } setTimeout("upticker()",speed); //--> </script>
-Sayfa rengini belirleme
<select name="schemesel" onChange="document.bgColor = this.options[selectedIndex].value" size="1" style="background-color: rgb(57,57,57); color: rgb(255,255,255)"> <option value="000000" selected>SİYAH </option> <option value="0000FF">MAVİ </option> <option value="A0A0A0">GRİ </option> <option value="E9E900">SARI </option> <option value="A0A0FF">ŞAFAK MAVİSİ </option> <option value="C70000">KIRMIZI </option> <option value="FFFFA0">AÇIK SARI </option> <option value="F0F0FA">İNCİ BEYAZI</option> <option value="FF00FF">MOR </option> <option value="00FFFF">TURKUAZ </option> </select>
-Durum çubuğunda yanıp sönen yazı
<SCRIPT language="JavaScript"><!--- var yazi = "jaws22 web hizmetleri"; var hiz = 150; var control = 1; function flash() {if (control == 1) {window.status=yazi; control=0;} else {window.status=""; control=1;} setTimeout("flash();",hiz);} // --></SCRIPT> <BODY OnLoad="flash();"
-Sayfada hesap makinası
<script LANGUAGE="VBScript"> <!-- ' Module-level variables Dim Accum ' Previous number (operand) awaiting operation Dim FlagNewNum ' Flag to indicate a new number (operand) is being entered Dim PendingOp ' Pending operation waiting for completion of second operand Sub NumPressed(Byval Num) If FlagNewNum Then Document.Keypad.Readout.Value = Num FlagNewNum = False Else If Document.Keypad.Readout.Value = "0" Then Document.Keypad.Readout.Value = CStr(Num) Else Document.Keypad.ReadOut.Value= Document.Keypad.ReadOut.Value & CStr(Num) End If End If End Sub Sub Decimal_onClick() Dim curReadout curReadOut = Document.Keypad.ReadOut.Value If FlagNewNum Then curReadOut = "0." FlagNewNum = False Else If InStr(curReadOut, ".") = 0 Then curReadOut = curReadOut & "." End If End If Document.Keypad.ReadOut.Value = curReadOut End Sub Sub Plus_onClick() Operation "+" End Sub Sub Minus_onClick() Operation "-" End Sub Sub Multiply_onClick() Operation "*" End Sub Sub Divide_OnClick() Operation "/" End Sub Sub Operation(Byval Op) Dim Readout ReadOut = Document.Keypad.ReadOut.Value If FlagNewNum and PendingOp <> "=" Then ' User is hitting op keys repeatedly, so don't do anything Else FlagNewNum = True Select Case PendingOp Case "+" Accum = CDbl(Accum) + CDbl(ReadOut) Case "-" Accum = CDbl(Accum) - CDbl(ReadOut) Case "/" Accum = CDbl(Accum) / CDbl(ReadOut) Case "*" Accum = CDbl(Accum) * CDbl(ReadOut) Case Else Accum = ReadOut End Select Document.Keypad.ReadOut.Value = Accum PendingOp = Op End If End Sub Sub ClearEntry_onClick() ' Remove current number and reset state Document.Keypad.ReadOut.Value = "0" FlagNewNum = True End Sub Sub Clear_onClick() ' Clear accumulator and pending operation, and clear display Accum = 0 PendingOp = "" ClearEntry_onClick End Sub Sub Neg_onClick() Document.Keypad.ReadOut.Value = CDbl(Document.Keypad.ReadOut.Value) * -1 End Sub Sub Percent_onClick() Document.Keypad.ReadOut.Value = (CDbl(Document.Keypad.ReadOut.Value) / 100) * Accum End Sub Sub Equals_OnClick() Operation "=" End Sub --> </script> </p> <form action Name="Keypad"> <table BORDER="2" WIDTH="197" HEIGHT="168" CELLPADDING="1" CELLSPACING="5"> <tr> <td width="113" height="19"><font face="Times New Roman" color="#000000"><strong>arifal</strong></font></td> </tr> <tr> <td COLSPAN="3" ALIGN="left" width="130" height="25"><input NAME="ReadOut" TYPE="Text" SIZE="24" VALUE="0" WIDTH="100%"></td> <td width="87" height="25"></td> <td width="149" height="25"><div align="center"><center><p><input NAME="Clear" TYPE="Button" VALUE=" C "></td> <td width="196" height="25" align="center"><input NAME="ClearEntry" TYPE="Button" VALUE=" CE "></td> </tr> <tr align="center"> <td width="113" height="25"><div align="center"><center><p><input NAME="Seven" TYPE="Button" VALUE=" 7 " OnClick="NumPressed(7)"></td> <td width="77" height="25" align="center"><div align="center"><center><p><input NAME="Eight" TYPE="Button" VALUE=" 8 " OnClick="NumPressed(8)"></td> <td width="201" height="25" align="center"><div align="center"><center><p><input NAME="Nine" TYPE="Button" VALUE=" 9 " OnClick="NumPressed(9)"></td> <td width="87" height="25" align="center"></td> <td width="149" height="25" align="center"><div align="center"><center><p><input NAME="Neg" TYPE="Button" VALUE=" +/- "></td> <td width="196" height="25" align="center"><div align="center"><center><p><input NAME="Percent" TYPE="Button" VALUE=" % "></td> </tr> <tr align="center"> <td width="113" height="25"><div align="center"><center><p><input NAME="Four" TYPE="Button" VALUE=" 4 " OnClick="NumPressed(4)"></td> <td width="77" height="25" align="center"><div align="center"><center><p><input NAME="Five" TYPE="Button" VALUE=" 5 " OnClick="NumPressed(5)"></td> <td width="201" height="25" align="center"><div align="center"><center><p><input NAME="Six" TYPE="Button" VALUE=" 6 " OnClick="NumPressed(6)"></td> <td width="87" height="25" align="center"></td> <td ALIGN="center" width="149" height="25"><div align="center"><center><p><input NAME="Plus" TYPE="Button" VALUE=" + "></td> <td ALIGN="center" width="196" height="25"><div align="center"><center><p><input NAME="Minus" TYPE="Button" VALUE=" - "></td> </tr> <tr align="center"> <td width="113" height="1"><div align="center"><center><p><input NAME="One" TYPE="Button" VALUE=" 1 " OnClick="NumPressed(1)"></td> <td width="77" height="1" align="center"><div align="center"><center><p><input NAME="Two" TYPE="Button" VALUE=" 2 " OnClick="NumPressed(2)"></td> <td width="201" height="1" align="center"><div align="center"><center><p><input NAME="Three" TYPE="Button" VALUE=" 3 " OnClick="NumPressed(3)"></td> <td width="87" height="1" align="center"></td> <td ALIGN="center" width="149" height="1"><div align="center"><center><p><input NAME="Multiply" TYPE="Button" VALUE=" * "></td> <td ALIGN="center" width="196" height="1"><div align="center"><center><p><input NAME="Divide" TYPE="Button" VALUE=" / "></td> </tr> <tr align="center"> <td width="113" height="25"><div align="center"><center><p><input NAME="Zero" TYPE="Button" VALUE=" 0 " OnClick="NumPressed(0)"></td> <td width="77" height="25" align="center"><div align="center"><center><p><input NAME="Decimal" TYPE="Button" VALUE=" . "></td> <td COLSPAN="3" width="289" height="25" align="center"><font face="Times New Roman" color="#000000"><strong> Hesap Makinesi</strong></font></td> <td width="196" height="25" align="center"><div align="center"><center><p><input NAME="Equals" TYPE="Button" VALUE=" = "></td> </tr> </table> </form> </td> </tr> </table> </center></div></td> </tr> </table> </center></div>
-Sayfada link menü'sü
<form><div align="center"><center><p> <select SIZE="1"> <option selected value="http://www.arifal.cjb.net">www.arifal.cjb.net</option> <option value="http://www.iyi.net">www.iyi.net </option> <option value="http://www.cnet.com">Cnet.com </option> </select> <input TYPE="button" VALUE=" Git " ONCLICK="loadPage(this.form.elements[0])"> </p> </center></div> </form> </body> <script LANGUAGE="JavaScript"> <!-- function loadPage(list) { location.href = list.options[list.selectedIndex].value }// --></script>
-Linkde küsör artı (+) oluyor
<A href="http://jaws22.sitemynet.com" style="CURSOR: crosshair" >Bu Link Mause İle Üzerine Gelince + Haline Dönüşür</A>
-Sağ tuşa tıklayınca problemler oluşsun
<SCRIPT language=JavaScript> document.onmousedown=click var times=0 var times2=10 function click() { if ((event.button==2) || (event.button==3)) { if (times>=1) { earthquake() } alert("Bir Daha Denerseniz Problemler Oluşacaktır!! "); times++ } } function earthquake() { alert("Sizi Uyarmıştım!"); window.moveTo(0, 0) window.moveTo(1, 1) window.moveTo(2, 2) window.moveTo(3, 3) window.moveTo(4, 4) window.moveTo(5, 5) window.moveTo(6, 6) window.moveTo(7, 7) window.moveTo(8, 8) window.moveTo(9, 9) window.moveTo(10, 10) window.moveTo(9, 9) window.moveTo(8, 8) window.moveTo(7, 7) window.moveTo(6, 6) window.moveTo(5, 5) window.moveTo(4, 4) window.moveTo(3, 3) window.moveTo(2, 2) window.moveTo(1, 1) alert("CANAY.COM!") tremmors() } function tremmors() { window.moveTo(0, 0) window.moveTo(1, 1) window.moveTo(2, 2) window.moveTo(3, 3) window.moveTo(4, 4) window.moveTo(5, 5) window.moveTo(6, 6) window.moveTo(7, 7) window.moveTo(8, 8) window.moveTo(9, 9) window.moveTo(10, 10) window.moveTo(9, 9) window.moveTo(8, 8) window.moveTo(7, 7) window.moveTo(6, 6) window.moveTo(5, 5) window.moveTo(4, 4) window.moveTo(3, 3) window.moveTo(2, 2) window.moveTo(1, 1) tremmors() } </SCRIPT>