Açılamalı Link
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <SCRIPT LANGUAGE="JavaScript"> /******************************************************************* * * File : AnimatedFader.js * * Created : 2000/05/28 * * Author : Roy Whittle (akin-aslan@hotmail.de) www.html-kodlari.tr.gg * * Purpose : To create fading text descriptions * * History * Date Version Description * * 2000-05-28 1.0 Initial version. Based on the State Transition * Diagram created for animated rollovers I * modified the code to fade text. * 2000-05-29 1.1 I did not follow the STD correctly and introduced * a bug that left objects in the ON state. * This is now corrected. * 2000-06-07 1.2 Introduced a start colour so that the script * can be used on different backgrounds. * Change the var AnimationRunning and FrameInterval * so they don't conflict with animate2.js * 2000-08-09 1.3 Added Gecko ( Netscape 6 Preview Release 1 ) support * - Ken workman k.workman@3DASA.com * 2000-10-15 1.4 Modified to make Netscpe 6 (PR3) more efficient * by just changing the color instead of replacing * the whole content of the DIV. ***********************************************************************/ /*** Create some global variables ***/ var FadingObject = new Array(); var FadeRunning=false; var FadeInterval=30; /*******************************************************************************/ /*** These are the simplest HEX/DEC conversion routines I could come up with ***/ /*** I have seen a lot of fade routines that seem to make this a ***/ /*** very complex task. I am sure somene else must've had this idea ***/ /*******************************************************************************/ var hexDigit=new Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"); function dec2hex(dec) { return(hexDigit[dec>>4]+hexDigit[dec&15]); } function hex2dec(hex) { return(parseInt(hex,16)) } /******************************************************************************************/ /*********************************************************** * Function : createFaderObject * * Parameters : theDiv - The name of the DIV in which to fade the text * numSteps - The number of steps to use in the fade. * startColor - The background colour of the page. * * Description : Creates an object that can hold the current * state of the fade animation for a particular DIV ***********************************************************/ function createFaderObject(theDiv, numSteps, startColor) { if(!startColor) startColor = "000000"; this.name = theDiv; this.text = null; this.color = "FFFFFF"; this.next_text = null; this.next_color = null; this.state = "OFF"; this.index = 0; this.steps = numSteps; this.r = hex2dec(startColor.slice(0,2)); this.g = hex2dec(startColor.slice(2,4)); this.b = hex2dec(startColor.slice(4,6)); } /*********************************************************** * Function : FadingText * * Parameters : theDiv - The name of the DIV in which to fade the text * numSteps - The number of steps to use in the fade. * * Description : Library function to be called from the main HTML. * Creates an object that can hold the current * state of the fade animation for a particular DIV ***********************************************************/ function FadingText(theDiv, numSteps, startColor) { FadingObject[theDiv] = new createFaderObject(theDiv, numSteps, startColor); } /***************************************************************** * Function : start_fading * * Description : If the FadeAnimation loop is not currently running * then it is started. *****************************************************************/ function start_fading() { if(!FadeRunning) FadeAnimation(); } /***************************************************************** * Function : set_text * * Description : In the new W3C DOM model we need only set the text * once, after that we can just change the colour *****************************************************************/ function set_text(f) { if(navigator.appName.indexOf("Netscape") != -1 && document.getElementById) { var theElement = document.getElementById(f.name); var newRange = document.createRange(); newRange.setStartBefore(theElement); var strFrag = newRange.createContextualFragment(f.text); while (theElement.hasChildNodes()) theElement.removeChild(theElement.lastChild); theElement.appendChild(strFrag); theElement.style.color="#"+f.startColor; } } /***************************************************************** * * Function : getColor * * Parameters : f - the fade object for which to calculate the colour. * * Description: Calculates the color of the link depending on * how far through the fade we are. * *****************************************************************/ function getColor(f) { var r=hex2dec(f.color.slice(0,2)); var g=hex2dec(f.color.slice(2,4)); var b=hex2dec(f.color.slice(4,6)); r2= Math.floor(f.r+(f.index*(r-f.r))/(f.steps) + .5); g2= Math.floor(f.g+(f.index*(g-f.g))/(f.steps) + .5); b2= Math.floor(f.b+(f.index*(b-f.b))/(f.steps) + .5); return("#" + dec2hex(r2) + dec2hex(g2) + dec2hex(b2)); } /***************************************************************** * * Function : setColor * * Parameters : fadeObj - The TextFader object to set * * Description: Gets the color of the text and writes it to * the DIV. * *****************************************************************/ function setColor(fadeObj) { var theColor=getColor(fadeObj); var str="<FONT COLOR="+ theColor + ">" + fadeObj.text + "</FONT>"; var theDiv=fadeObj.name; //if IE 4+ if(document.all) { document.all[theDiv].innerHTML=str; } //else if NS 4 else if(document.layers) { document.nscontainer.document.layers[theDiv].document.write(str); document.nscontainer.document.layers[theDiv].document.close(); } //else if NS 6 (supports new DOM, may work in IE5) - see Website Abstraction for more info. //http://www.wsabstract.com/javatutors/dynamiccontent4.shtml else if (document.getElementById) { theElement = document.getElementById(theDiv); theElement.style.color=theColor; } } /***************************************************************** * * Function : fade_up * * Parameters : theDiv - The div in which to display the text * newText - The text to display when faded in * newColor- The color the text will be. * * Description: Depending on the current "state" of the fade * this function will determine the new state and * if neccessary, start the fade effect. * *****************************************************************/ function fade_up(theDiv, newText, newColor) { var f=FadingObject[theDiv]; if(newColor == null) newColor="FFFFFF"; if(f.state == "OFF") { f.text = newText; f.color = newColor; f.state = "FADE_UP"; set_text(f); start_fading(); } else if( f.state == "FADE_UP_DOWN" || f.state == "FADE_DOWN" || f.state == "FADE_DOWN_UP") { if(newText == f.text) f.state = "FADE_UP"; else { f.next_text = newText; f.next_color = newColor; f.state = "FADE_DOWN_UP"; } } } /***************************************************************** * * Function : fade_down * * Parameters : theDiv - The div in which to display the text * * Description: Depending on the current "state" of the fade * this function will determine the new state and * if neccessary, start the fade effect. * *****************************************************************/ function fade_down(theDiv) { var f=FadingObject[theDiv]; if(f.state=="ON") { f.state="FADE_DOWN"; start_fading(); } else if(f.state=="FADE_DOWN_UP") { f.state="FADE_DOWN"; f.next_text = null; } else if(f.state == "FADE_UP") { f.state="FADE_UP_DOWN"; } } /******************************************************************* * * Function : Animate * * Description : This function is based on the Animate function * of animate.js (animated rollovers). * Each fade object has a state. This function * modifies each object and changes its state. *****************************************************************/ function FadeAnimation() { FadeRunning = false; for (var d in FadingObject) { var f=FadingObject[d]; if(f.state == "FADE_UP") { if(f.index < f.steps) f.index++; else f.index = f.steps; setColor(f); if(f.index == f.steps) f.state="ON"; else FadeRunning = true; } else if(f.state == "FADE_UP_DOWN") { if(f.index < f.steps) f.index++; else f.index = f.steps; setColor(f); if(f.index == f.steps) f.state="FADE_DOWN"; FadeRunning = true; } else if(f.state == "FADE_DOWN") { if(f.index > 0) f.index--; else f.index = 0; setColor(f); if(f.index == 0) f.state="OFF"; else FadeRunning = true; } else if(f.state == "FADE_DOWN_UP") { if(f.index > 0) f.index--; else f.index = 0; setColor(f); if(f.index == 0) { f.text = f.next_text; f.color = f.next_color; f.next_text = null; f.state ="FADE_UP"; set_text(f); } FadeRunning = true; } } /*** Check to see if we need to animate any more frames. ***/ if(FadeRunning) setTimeout("FadeAnimation()", FadeInterval); }</SCRIPT> <SCRIPT LANGUAGE="JavaScript"> /* * FadingText(divName, numSteps, BGColor) * divName : Must match the DIV names defined at the end of the BODY) * numSteps: The number of steps in the fading transition * BGColor : The background colour of the DIV or document. */ FadingText('fade1', 10,"FFFFFF"); /*** The "Frame Interval" Smaller = faster ***/ FadeInterval=30; </SCRIPT> </HEAD> <BODY> <p><A HREF="http://www.html-kodlari.tr.gg" onMouseOver="fade_up('fade1','<FONT SIZE=4 FACE=Verdana>Türkiyenin Yeni Interactive Sitesi</FONT>','000000')" onMouseOut="fade_down('fade1')">HTML-KODLARI.Tr.GG Türkiyenin Yeni Interactive Sitesi</A> <p><A HREF="http://www.e-dersane.com" onMouseOver="fade_up('fade1','<FONT SIZE=4 FACE=Verdana>Web tasarımcıları için bulunmaz bir site</FONT>','000000')" onMouseOut="fade_down('fade1')">E-dersane</A> <p><A HREF="http://www.ntvmsnbc.com" onMouseOver="fade_up('fade1','<FONT SIZE=4 FACE=Verdana>Türkiye'nin haber portalı</FONT>','000000')" onMouseOut="fade_down('fade1')">Ntvmsnbc</A> <script language="JavaScript1.2"> if (document.layers){ document.write('<ilayer name="nscontainer" width="100%" height="100">') document.write('<layer name="fade1" width="100%" height="100">') document.write('</layer></ilayer>') } else document.write('<DIV ID="fade1"></DIV>') </script> </BODY> </HTML>
Açılır Menü
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <style>BODY{font-family:verdana,arial,helvetica;font-size:70%;} H1{font-size:120%;font-style:italic;} DIV#divMenuBar{background-color:#6699CC;} TABLE#tblMenuBar TD{font-size:60%;color:white;padding:0px 5px 0px 5px;cursor:default;} TABLE#tblMenuBar TD.MenuMadde{font-weight:bold;cursor:hand;} DIV.clsMenu{ font-size:90%;background-color:#6699CC; position:absolute;visibility:hidden;width:130px; padding:5px 5px 5px 8px;border-top:1 white solid; } DIV.clsMenu A{text-decoration:none;color:white;font-weight:bold;} DIV.clsMenu A:hover{color:moccasin;} BUTTON{font-family:tahoma;font-size:100%;}</style> <SCRIPT LANGUAGE="Javascript"> var eOpenMenu = null; function OpenMenu(eSrc,eMenu) { eMenu.style.left = eSrc.offsetLeft + divMenuBar.offsetLeft; eMenu.style.top = divMenuBar.offsetHeight + divMenuBar.offsetTop; eMenu.style.visibility = "visible"; eOpenMenu = eMenu; } function CloseMenu(eMenu) { eMenu.style.visibility = "hidden"; eOpenMenu = null; } function document.onmouseover() { var eSrc = window.event.srcElement; if ("MenuMadde" == eSrc.className) { eSrc.style.color = "moccasin"; var eMenu = document.all[eSrc.id.replace("tdMenuBarItem","divMenu")]; if (eOpenMenu && eOpenMenu != eMenu) { CloseMenu(eOpenMenu); } if (eMenu) { OpenMenu(eSrc,eMenu); } } else if (eOpenMenu && !eOpenMenu.contains(eSrc) && !divMenuBar.contains(eSrc)) { CloseMenu(eOpenMenu); } } function document.onmouseout() { var eSrc = window.event.srcElement; if ("MenuMadde" == eSrc.className) { eSrc.style.color = ""; } } </SCRIPT> </HEAD> <BODY> <DIV ID="divMenuBar"> <TABLE ID="tblMenuBar" BORDER="0"> <TR> <TD CLASS="MenuMadde" ID="tdMenuBarItem01">MENÜ MADDE 01</TD> <TD>|</TD> <TD CLASS="MenuMadde" ID="tdMenuBarItem02">MENÜ MADDE 02</TD> <TD>|</TD> <TD CLASS="MenuMadde" ID="tdMenuBarItem03">MENÜ MADDE 03</TD> </TR> </TABLE> </DIV> <DIV CLASS="clsMenu" ID="divMenu01"> <DIV CLASS="clsMenuAra"></DIV> <DIV><A TARGET="_new" HREF="01.asp">Madde 01</A></DIV> <DIV><A TARGET="_new" HREF="02.asp">Madde 02</A></DIV> <DIV><A TARGET="_new" HREF="03.asp">Madde 03</A></DIV> <DIV><A TARGET="_new" HREF="04.asp">Madde 04</A></DIV> <DIV><A TARGET="_new" HREF="05.asp">Madde 05</A></DIV> </DIV> <DIV CLASS="clsMenu" ID="divMenu02"> <DIV CLASS="clsMenuAra"></DIV> <DIV><A TARGET="_new" HREF="11.asp">Madde 01</A></DIV> <DIV><A TARGET="_new" HREF="12.asp">Madde 02</A></DIV> <DIV><A TARGET="_new" HREF="13.asp">Madde 03</A></DIV> <DIV><A TARGET="_new" HREF="14.asp">Madde 04</A></DIV> <DIV><A TARGET="_new" HREF="15.asp">Madde 05</A></DIV> </DIV> <DIV CLASS="clsMenu" ID="divMenu03"> <DIV CLASS="clsMenuAra"></DIV> <DIV><A TARGET="_new" HREF="21.asp">Madde 01</A></DIV> <DIV><A TARGET="_new" HREF="22.asp">Madde 02</A></DIV> <DIV><A TARGET="_new" HREF="23.asp">Madde 03</A></DIV> <DIV><A TARGET="_new" HREF="24.asp">Madde 04</A></DIV> <DIV><A TARGET="_new" HREF="25.asp">Madde 05</A></DIV> </DIV> </BODY> </HTML>
Açılış Scripti
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function expandingWindow(website) { // Dikine açılma hizi (Yüksek değer=hızlı) var heightspeed = 2; // Genişlemesine açılma hizi (Yüksek değer=hızlı) var widthspeed = 7; // Soldan Kaç Piksel solda görünecek var leftdist = 0; // Yukarıdan Kaç Piksel aşağıda görünecek var topdist = 0; if (document.all) { var winwidth = window.screen.availWidth - leftdist; var winheight = window.screen.availHeight - topdist; var sizer = window.open("","","left=" + leftdist + ",top=" + topdist + ",width=1,height=1,scrollbars=yes, location=yes, status=yes, toolbar=yes,menubar=yes"); for (sizeheight = 1; sizeheight < winheight; sizeheight += heightspeed) { sizer.resizeTo("1", sizeheight); } for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed) { sizer.resizeTo(sizewidth, sizeheight); } sizer.location = website; } else window.location = website; } // End --> </script> </head> <body> <a href="#" onclick="expandingWindow('test.htm'); return false">Pencereyi Aç</a>
Adınızın Japoncası
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <SCRIPT LANGUAGE="JavaScript"> <!-- Original: Momoko Sakura --> <!-- Begin function isvowel(v) { if ((v == "a") || (v == "e") || (v == "i") || (v == "o") || (v == "u")) { return true; } else { return false; } } function toJapanese(inp) { name1 = inp; otp = ""; cnt = 0; k = ""; l = ""; inp = inp.toLowerCase(); while (cnt <= inp.length - 1) { k = inp.charAt(cnt); if ((cnt + 1) > (inp.length - 1)) { l = "u"; } else { l = inp.charAt(cnt+1); } if ((k == " ") || (k == "-") || (k == "'")) { otp = otp + k; cnt += 1; } if ((l == "y") && (!isvowel(k))) { l = "i"; } if (k == "x") { if (cnt == 0) { k = "z"; } else { k = "k"; } } if (k == "g") { if ((l == "e") || (l == "i") || (l == "y")) { k = "j"; } else { if (isvowel(l)) { otp = otp + k + l; cnt += 2; } else { otp = otp + k + "u"; cnt += 1; } } } if (k == "j") { if ((l == "a") || (l == "u") || (l == "o")) { otp = otp + k + l; cnt +=2; } if ((l == "e") || (l == "i")) { otp = otp + "ji"; cnt += 2; } } if (k == "y") { if ((l == "a") || (l == "u") || (l == "o")) { otp = otp + k + l; cnt += 2; } else { k = "i"; } } if (k == "m") { if (isvowel(l)) { otp = otp + k + l; cnt += 2; } else { if ((l == "b") || (l == "m") || (l == "p")) { otp = otp + "n"; cnt += 1; } else { otp = otp + "mu"; cnt += 1; } } } if (isvowel(k) || ((k == "n") && (!isvowel(l)))) { otp = otp + k; cnt = cnt + 1; } if (k == "q") { k = "k"; } if (k == "v") { k = "b"; } if (k == "l") { k = "r";} if (k == "c") { if (l == "h") { otp = otp + "chi"; cnt += 3; } else { if ((l == "e") || (l == "i") || (l == "y")) { k = "s"; } else { k = "k"; } } } if (k == "w") { if ((l == "a") || (l == "o")) { otp = otp + k + l; cnt += 2; } else { if ((l == "i") || (l=="e")) { otp = otp + "u" + l; cnt += 2; } else { k = "b"; } } } if ((k == "b") || (k == "k") || (k == "r")) { if (isvowel(l)) { otp = otp + k + l; cnt += 2; } else { otp = otp + k + "u"; cnt += 1; } } if (k == "d") { if ((l == "i") || (l == "a") || (l == "e")) { otp = otp + "de"; cnt += 2; } if ((l == "u") || (l == "o")) { otp = otp + "do"; cnt += 2; } if (!isvowel(l)) { otp = otp + "de"; cnt += 1; } } if (k == "f") { otp = otp + "fu"; cnt += 1; if (isvowel(l)) { cnt += 1; } } if (k == "h") { if (l == "u") { otp = otp + "fu"; cnt += 2; } else { if (isvowel(l)) { otp = otp + k + l; cnt += 2; } else { otp = otp + "fu"; cnt += 1; } } } if (k == "z") { if (l == "i") { k = "j"; } else { if (isvowel(l)) { otp = otp + k + l; cnt += 2; } else { otp = otp + "zu"; cnt += 1; } } } if (k == "n") { if (isvowel(l)) { otp = otp + k + l; cnt += 2; } } if (k == "p") { if (l == "h") { otp = otp + "fu"; cnt += 2; } if (isvowel(l)) { otp = otp + k + l; cnt += 2; } else { otp = otp + "pu"; cnt += 1; } } if (k == "s") { if ((l == "i") || (l == "h")) { otp = otp + "shi"; cnt += 2; if (l == "h") { cnt += 1; } } else { if (isvowel(l)) { otp = otp + k + l; cnt += 2; } else { otp = otp + "su"; cnt += 1; } } } if (k == "t") { if ((l == "a") || (l == "e") || (l == "o")) { otp = otp + k + l; cnt += 2; } if ((l == "u") || ((!isvowel(l)) && (!(l == "h")))) { otp = otp + "tsu"; cnt += 1; if (l == "u") { cnt += 1; } if ((l == "s") && (inp.charAt(cnt + 1) == "u")) { cnt += 2; } } if (l == "i") { otp = otp + "chi"; cnt += 2; } if (l == "h") { otp = otp + "fu"; cnt += 3; } } } name2 = "" + otp.charAt(0).toUpperCase(); for (j = 1; j <= otp.length - 1; j++) { name2 += otp.charAt(j); } alert(name1 + " isminin japonca telaffuzu: "" + name2 + """); } // End --> </script> <title>z-japonca_tel</title></HEAD> <BODY> <center> <form> İsminiz: <input type=text name="personname" size=15> <input type=button value="Japonca telaffuzu!" onClick="toJapanese(this.form.personname.value);"> </form> </center> </BODY> </HTML>
Arama Motoru-1
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <p> <script> <!-- START HIDE var MAX_ENGINES = 35; var tp=''; var tpp=''; var find = 'hunt'; var hold=0; var hold2=0; var gog=0; var ap=''; function MakeArray(n) { for (var i = 1; i <= n; i++) { this[i] = 0; } this.maxlen = n; this.len = 0; return this; } var engs = new MakeArray(MAX_ENGINES); function find_substring(needle, haystack) { var i, needlen = needle.length, haylen = haystack.length; for (i=0; i<=haylen-needlen; i++) { if (needle == haystack.substring(i,i+needlen)) return i; } return false; } function Engine(name, opts, home, search) { var gotcha = find_substring(find, search); this.name = name; this.opts = opts; this.home = home; this.pre_gotcha = search.substring(0,gotcha); this.post_gotcha= search.substring(gotcha+find.length, search.length); } function Add(name, opts, home, search) { engs.len++; if (engs.len <= engs.maxlen) { engs[engs.len] = new Engine(name, opts, home, search) } else { alert ('Better increase MAX_ENGINES: ' + engs.Len + '>' + engs.maxlen) } } function DisplayForm() { document.writeln('<CENTER><FORM Name=Gotchaform OnSubmit="HandleForm(this); return false">'); document.writeln('<table border=0 bordercolor=black width=325 bgcolor=#FFCC33><tr><td width="125"><b><font size=2 face="arial">Aranacak Kelime:</b></td> <td width="200"><INPUT size=25 name="query"></td></tr></table>'); document.writeln(' <b><font size=2 face="arial">Nerede aranacak?</b> <SELECT name="service">'); for (i=1; i <= engs.len; i++) { document.writeln("<OPTION " + engs[i].opts + "> " + engs[i].name); } document.writeln('</SELECT> <br><input type=submit value="Ara ve Bul">'); document.writeln('</FORM> </CENTER>'); document.Gotchaform.query.focus() } function HandleForm(form){ var i, newq="", oldq=form.query.value; for (i=0; i<oldq.length; i++) { // compress [ ]+ into + var thischar = oldq.charAt(i); if (thischar =="+")newq += "%2B"; else if (thischar != ' ') newq += thischar; else if (lastchar != ' ') newq += '+'; lastchar = thischar; } var eng = engs[1+form.service.selectedIndex]; // Window search=window.open(newq ? eng.pre_gotcha + newq + eng.post_gotcha : eng.home,"SmartSearch","scrollbars=yes,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes,width='100%',hight='100%'"); } Add("Dünya - AltaVista","SELECTED","http://altavista.digital.com/","http://altavista.digital.com/cgi-bin/query?pg=q&what=web&fmt=d&q=hunt"); Add("Dünya - AltaVista (UseNet)","","http://altavista.digital.com/","http://altavista.digital.com/cgi-bin/query?pg=q&what=news&fmt=d&q=hunt" ); Add("Dünya - Yahoo!","","http://www.yahoo.com/","http://search.yahoo.com/bin/search?p=hunt" ); Add("Dünya - DejaNews","","http://www.dejanews.com/","http://search.dejanews.com/nph-dnquery.xp?query=hunt&defaultOp=AND&svcclass=dncurrent&maxhits=25"); Add("Dünya - HotBot","","http://www.search.hotbot.com","http://www.search.hotbot.com/search.php?MT=hunt&DC=25"); Add("Dünya - Infoseek UltraSmart","","http://www.infoseek.com/Home?pg=Home.php&sv=A2","http://www.infoseek.com/Titles?qt=hunt&col=WW&sv=A2"); Add("Dünya - Excite","","http://www.excite.com/","http://www.excite.com/search.gw?searchType=Concept&search=hunt&category=default"); Add("Dünya - Infoseek (Usenet)","","http://www.infoseek.com","http://www.infoseek.com/Titles?qt=hunt&col=NN&sv=A2"); Add("Dünya - Lycos","","http://www.lycos.com/","http://www.lycos.com/cgi-bin/pursuit?query=hunt&backlink=639"); Add("Dünya - Magellan","","http://www.mckinley.com/","http://www.mckinley.com/extsearch.cgi?query=hunt"); Add("Dünya - OpenText","","http://search.opentext.com","http://search.opentext.com/omw/simplesearch?SearchFor=hunt&mode=and"); Add("Dünya - WebCrawler","","http://webcrawler.com/","http://webcrawler.com/cgi-bin/WebQuery?searchText=hunt&maxHits=25"); Add("Dünya - Yahoo (PixSearch)","","http://ipix.yahoo.com/","http://ipix.yahoo.com/cgi-bin/y-new/keyword_search.cgi?db=%2Fdata%2Fglobal_keyword&q=hunt"); // Software Add("Yazılım - ZDNet","","http://www.zdnet.com/","http://www6.zdnet.com/cgi-bin/texis/swlib/hotfiles/search.php?Usrt=rel&Usrchtype=simple&Utext=hunt"); Add("Yazılım - DaveCentral","","http://www.davecentral.com/","http://www.davecentral.com/cgi-bin/search.pl?query=hunt"); Add("Yazılım - Filez","","http://www.filez.com/","http://filez.com/cgi/filez.cgi?query=hunt&type=All+Files&hits=50&domain=World&doit=Search/"); Add("Yazılım - Shareware.com","","http://www.shareware.com/","http://search.shareware.com/code/engine/Find?logop=and&cfrom=quick&orfile=True&hits=25&search=hunt&category=All-Categories"); Add("Yazılım - PC game finder","","http://www.pcgame.com/","http://www.pcgame.com/finder/search.cgi?key=hunt"); // Denmark Add("Danimarka - AltaVista (DK)","","http://altavista.telia.com/cgi-bin/telia","http://www.danielsen.com/cgi/thornew.cgi?country=danmark&cnt=50&q=hunt"); Add("Danimarka - Jubii","","http://www.jubii.dk/","http://soeg.jubii.dk/resultat.asp?startnummer=1&antalresultater=30&soegeord=hunt"); Add("Danimarka - Thor","","http://www.danielsen.com/thor/","http://www.danielsen.com/cgi/thornew.cgi?country=danmark&cnt=50&q=hunt"); DisplayForm(); // STOP HIDE --> </script> </p> </body> </html>
Arama Motoru-2
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <script language="JavaScript"> <!-- // // Script by Jari Aarniala [www.mbnet.fi/~foo -- foo@mbnet.fi] // function startSearch(){ searchString = document.searchForm.searchText.value; if(searchString != ""){ searchEngine = document.searchForm.whichEngine.selectedIndex + 1; finalSearchString = ""; if(searchEngine == 1){ finalSearchString = "http://www.altavista.digital.com/cgi-bin/query?pg=q&what=web&fmt=.&q=" + searchString; } if(searchEngine == 2){ finalSearchString = "http://av.yahoo.com/bin/query?p=" + searchString + "&hc=0&hs=0"; } if(searchEngine == 3){ finalSearchString = "http://www.excite.com/search.gw?trace=a&search=" + searchString; } if(searchEngine == 4){ finalSearchString = "http://www.hotbot.com/?SW=web&SM=MC&MT=" + searchString + "&DC=10&DE=2&RG=NA&_v=2&act.search.x=89&act.search.y=7"; } if(searchEngine == 5){ finalSearchString = "http://www.infoseek.com/Titles?qt=" + searchString + "&col=WW&sv=IS&lk=noframes&nh=10"; } if(searchEngine == 6){ finalSearchString = "http://www.lycos.com/cgi-bin/pursuit?adv=%26adv%3B&cat=lycos&matchmode=and&query=" + searchString + "&x=45&y=11"; } if(searchEngine == 7){ finalSearchString = "http://netfind.aol.com/search.gw?search=" + searchString + "&c=web&lk=excite_netfind_us&src=1"; } location.href = finalSearchString; } } // --> </script> <basefont face="Verdana, Arial, sans-serif"> <form name="searchForm"> <table width=320 border cellpadding=3 cellspacing=2 bgcolor=444444> <tr> <td bgcolor=lightblue><font size=1 face="Verdana, Arial, sans-serif">Aranacak kelime:<br> <td bgcolor=lightblue><font size=1 face="Verdana, Arial, sans-serif">Aranacak site: <td bgcolor=lightblue> <tr> <td bgcolor=navajowhite><input style="background: dddddd" name="searchText" type="text"> <td bgcolor=navajowhite> <select style="background: dddddd" name="whichEngine"> <option selected>Altavista <option>Yahoo! <option>Excite <option>Hotbot <option>Infoseek <option>Lycos <option>AOL Netfind </select> <td bgcolor=navajowhite><input type="button" value="ARA" onClick="startSearch()"> </select> </table> </form> </BODY> </HTML>
Arka Planda Yazı
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <body bgcolor=black> <script language="JavaScript"> <!-- Message Watermark by AKIN akin-aslan@hotmail.de if (document.all){ msg="W w W . Z o m b i e o n L i n e . N e T "; msgColor="00ff00"; msgFont="Verdana";//Some fonts work better than others, Verdana is smoothest! //Nothing needs altering below! msg=msg.split(''); n=msg.length; e=360/n; yp=0; xp=0; yb=40; xb=60; sa=0.07; sb=0; pa=new Array(); pb=new Array(); for (i=0; i < n; i++){ document.write('<div id="logo" style="position:absolute;top:0;left:0;' +'height:30;width:30;font-family:'+msgFont+';text-align:center;color:'+msgColor+'">'+msg[i]+'</div>'); } function ani(){ yp=document.body.scrollTop+50; xp=document.body.scrollLeft+window.document.body.clientWidth-100; for (i=0; i < n; i++){ logo[i].style.top =yp+yb*Math.sin(sb+i*e*Math.PI/180); logo[i].style.left=xp+xb*Math.cos(sb+i*e*Math.PI/180); pb[i]=logo[i].style.pixelTop-yp; pa[i]=pb[i]-pb[i]*2; if (pa[i] < 1){ pa[i]=0; logo[i].style.visibility='hidden'; } else logo[i].style.visibility='visible'; logo[i].style.fontSize=pa[i]/2.7; } sb-=sa; setTimeout('ani()',10); } window.onload=ani; } // --> </script> <title>z-arka_planda_mesaj-1</title> </HEAD> <BODY> <td valign="top"> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> </table></BODY> </html>
Arkaplanın Yanıp Sönmesi-1
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> </head> <body> <p> <SCRIPT><!----> function initArray() { this.length = initArray.arguments.length for (var i = 0; i < this.length; i++) this[i+1] = initArray.arguments[i] } var hexChars = "0123456789ABCDEF"; function Dec2Hex (Dec) { var a = Dec % 16; var b = (Dec - a)/16; hex = "" + hexChars.charAt(b) + hexChars.charAt(a); return hex; } function bgChanger (begin, end, steps) { steps = steps -1 ; redA = begin.charAt(0) + begin.charAt(1); red_valA = parseInt(redA,'16'); redB = end.charAt(0) + end.charAt(1); red_valB = parseInt(redB,'16'); red_int = ((red_valB - red_valA) / steps) * -1; grnA = begin.charAt(2) + begin.charAt(3); grn_valA = parseInt(grnA,'16'); grnB = end.charAt(2) + end.charAt(3); grn_valB = parseInt(grnB,'16'); grn_int = ((grn_valB - grn_valA) / steps) * -1; bluA = begin.charAt(4) + begin.charAt(5); blu_valA = parseInt(bluA,'16'); bluB = end.charAt(4) + end.charAt(5); blu_valB = parseInt(bluB,'16'); blu_int = ((blu_valB - blu_valA) / steps) * -1; step = 2; red = red_valA; grn = grn_valA; blu = blu_valA; document.bgColor = begin; while ( steps >= step ) { red -= red_int; red_round = Math.round(red); red_hex = Dec2Hex(red); grn -= grn_int; grn_round = Math.round(grn); grn_hex = Dec2Hex(grn); blu -= blu_int; blu_round = Math.round(blu); blu_hex = Dec2Hex(blu); document.bgColor = red_hex + grn_hex + blu_hex; // document.write("<br>bgcolor = " + red_hex + grn_hex + blu_hex); step++; } document.bgColor = end; } <!-- // black to black (pause) bgChanger("000000","000000",25); // black to red bgChanger("000000","FF0000",50); // red to purple bgChanger("FF0000","AA00EE",50); // purple to blue bgChanger("AA00EE","0000FF",50); // blue to green bgChanger("0000FF","00FF00",50); // green to black bgChanger("00FF00","000000",50); // black to black (pause) bgChanger("000000","000000",25); // --></SCRIPT> </p> </body> </html>
Arkaplanın Yanıp Sönmesi-2
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <body bgcolor="#006000" onload="greenizer()"> <script> function MakeArray(n) { //allow new array to be made below... this.length = n for (i = 0;i<n;i++) this[i] = null } //6,7,8,9,a,b,c,d,e,f green = new MakeArray(10) g = 0 a = true green[1] = "#006000" green[2] = "#007000" green[3] = "#008000" green[4] = "#009000" green[5] = "#00A000" green[6] = "#00B000" green[7] = "#00C000" green[8] = "#00D000" green[9] = "#00E000" green[10] = "#00F000" function greenizer() { if(a == true) { g++ } if(g==11) { g-- a = false } if(g==1) { g++ a = true } if(a == false) { g-- } document.bgColor = green[g] setTimeout ("greenizer()",100) } </script> </body> </html>
Arkaplan Animasyonu
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> </head> <p> <body bgcolor=#000000 onLoad="snow()"> <script language="JavaScript"> <!-- Snow Script by AKIN.akin-aslan@hotmail.de N = 40; Y = new Array(); X = new Array(); S = new Array(); A = new Array(); B = new Array(); M = new Array(); V = (document.layers)?1:0; iH=(document.layers)?window.innerHeight:window.document.body.clientHeight; iW=(document.layers)?window.innerWidth:window.document.body.clientWidth; for (i=0; i < N; i++){ Y[i]=Math.round(Math.random()*iH); X[i]=Math.round(Math.random()*iW); S[i]=Math.round(Math.random()*5+2); A[i]=0; B[i]=Math.random()*0.1+0.1; M[i]=Math.round(Math.random()*1+1); } if (V){ for (i = 0; i < N; i++) {document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0 BGCOLOR='#FFFFF0' CLIP='0,0,"+M[i]+","+M[i]+"'></LAYER>")} } else{ document.write('<div style="position:absolute;top:0px;left:0px">'); document.write('<div style="position:relative">'); for (i = 0; i < N; i++) {document.write('<div id="si" style="position:absolute;top:0;left:0;width:'+M[i]+';height:'+M[i]+';background:#fffff0;font-size:'+M[i]+'"></div>')} document.write('</div></div>'); } function snow(){ var H=(document.layers)?window.innerHeight:window.document.body.clientHeight; var W=(document.layers)?window.innerWidth:window.document.body.clientWidth; var T=(document.layers)?window.pageYOffset:document.body.scrollTop; var L=(document.layers)?window.pageXOffset:document.body.scrollLeft; for (i=0; i < N; i++){ sy=S[i]*Math.sin(90*Math.PI/180); sx=S[i]*Math.cos(A[i]); Y[i]+=sy; X[i]+=sx; if (Y[i] > H){ Y[i]=-10; X[i]=Math.round(Math.random()*W); M[i]=Math.round(Math.random()*1+1); S[i]=Math.round(Math.random()*5+2); } if (V){document.layers['sn'+i].left=X[i];document.layers['sn'+i].top=Y[i]+T} else{si[i].style.pixelLeft=X[i];si[i].style.pixelTop=Y[i]+T} A[i]+=B[i]; } setTimeout('snow()',10); } //--> </script> </p> </body> </html>
Başlık Çubuğu
<html><head><script language="JavaScript"> <!-- var left=".::"; var right="::."; var msg="www.html-kodlari.tr.gg "; var speed=300; function scroll_title() { document.title=left+msg+right; msg=msg.substring(1,msg.length)+msg.charAt(0); setTimeout("scroll_title()",speed); } scroll_title(); // End --> </script> </head> <body> <font size="2" face="Tahoma">Başlık çubuğuna (title bar) bakar mısın? </font>
Butonlar
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <style type="text/css"><!--a:link,a:visited,a:active,a:hover{text-decoration:none}//--></style> <script language="JavaScript"> <!-- IE and NS6 Menu Button script AKIN.akin-aslan@hotmail.de if (!document.layers){ // Choose size and colours here!!!!!!!!!!!!!!!!!!!!!!!!!! Width=100; Font='Verdana'; FontSize=12; AFontColor='#ffffff'; BFontColor='#ffffff'; CFontColor='#ffffff'; FontWeight='normal'; //normal or bold! BackGround='#0080ff'; //Same as your body bgcolor! BorderDepth=1; BorderLight='#00ccff'; BorderShad='#000000'; //Nothing needs altering past here!!!!!!!!!!!!!!!!!!!!!! function On(id){ with(id.style){ color=BFontColor; borderTopColor=BorderLight; borderLeftColor=BorderLight; borderRightColor=BorderShad; borderBottomColor=BorderShad; } } function Off(id){ with(id.style){ color=AFontColor; borderTopColor=BackGround; borderLeftColor=BackGround; borderRightColor=BackGround; borderBottomColor=BackGround; } } function Down(id){ with(id.style){ color=CFontColor; borderTopColor=BorderShad; borderLeftColor=BorderShad; borderRightColor=BorderLight; borderBottomColor=BorderLight; } } function Link(Url,Txt){ document.write("<a href='"+Url+"'>" +"<div style='position:relative;" +"width:"+Width+"px;height:"+FontSize+"px;" +"border-width:"+BorderDepth+"px;" +"border-color:"+BackGround+";" +"border-style:solid;" +"padding:"+FontSize/3+"px;" +"background:"+BackGround+";" +"font-family:"+Font+";" +"font-size:"+FontSize+"px;" +"line-height:"+FontSize*1.2+"px;" +"font-weight:"+FontWeight+";" +"text-align:left;" +"color:"+AFontColor+";" +"margin-top:2px;" +"cursor:hand'" +"onMouseOver='javascript:On(this)'" +"onMouseOut='javascript:Off(this)'" +"onMouseDown='javascript:Down(this)'>" +Txt+"</div></a>"); } } function Temp(){ alert("TEST"); } //--> </script> </HEAD> <BODY> <script language="JavaScript"> <!-- if (!document.layers){ //This table stops oddness in NS6!!! if (document.getElementById&&!document.all){ document.write("<div style='position:relative'>" +"<table border='0' cellpadding='0' cellspacing='0'>" +"<tr><td valign='top'>"); } /* The visible Buttons here! Add as many as you want. Make sure you follow the same format as below eg: Link('MyOtherPage.php','See my other page'); */ Link('http://www.yahoo.com','Yahoo'); Link('http://www.google.com','Google'); Link('http://www.altavista.com','Alta Vista'); Link('http://www.lycos.com','Lycos'); Link('http://www.hotbot.com','Hotbot'); if (document.getElementById&&!document.all){ document.write("</td></tr></table></div>"); } } //--> </script> </BODY> </HTML>
Daktilo Yazı
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <script language="JavaScript"> <!-- if (document.all){ Size=16; Font='Verdana'; Colour='#aecae5'; typespeed=50; containerwidth=400;//Must be big enough to accomadate the longest message!!! containerheight=30; msg=new Array() msg[0]="Mesajlarınızı buraya yazın."; msg[1]="1.mesajınız."; msg[2]="2.mesajınız."; msg[3]="3.mesajınız"; msg[4]="http://www.html-kodlari.tr.gg"; //Alter nothing past here!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Msgs="<div id='X' style='position:relative;" +"width:"+containerwidth+";height:"+containerheight+";font-family:"+Font+";" +"font-size:"+Size+";color:"+Colour+"'></div>"; fade=100; next=0; pos=0; function Type(){ if (fade == 100) pos++; if (msg[next].substring(pos-1,pos) == " ") pos++; if (pos > msg[next].length*1.5) {fade-=3} if (fade <= 0) {fade=100;pos=0;next++} if (next == msg.length) {next=0} text=msg[next].substring(0,pos); X.innerHTML=text; X.style.filter='alpha(opacity='+fade+')'; setTimeout('Type()',typespeed); } } // --> </script> <!-- Use this as your body tag --> </HEAD> <body bgcolor=#000000 onLoad="if (document.all) Type()"> <script language="JavaScript"> <!-- if (document.all) document.write(Msgs) //--> </script> </BODY> </html>
Değişen Yazı-1
<Html><Head><Title>www.html-kodlari.tr.gg</title><html><head><meta http-equiv="Content-Language" content="tr"><meta http-equiv="Content-Type" content="text/html; charset=windows-1254"></head></html> <!-- Bu Sayfa www.html-kodlari.tr.gg Ürünüdür. --> <body> <div id="Zittertext" style="width:100%; font-size:40pt; font-weight:bold; color:#FF6666; filter:Wave(freq=5, light=0, phase=80, strength=1);"> <center><!--SELECTION--><i> <font size=+3> <font face="Comic Sans MS">www.html-kodlari.tr.gg</font> <font face="Comic Sans MS">.NeT</font></font></i><!--/SELECTION--> <script language="JavaScript"><!-- function DynWave() { if(document.all.Zittertext.filters[0].freq > 20) document.all.Zittertext.filters[0].freq = 10; document.all.Zittertext.filters[0].freq += 3; if(document.all.Zittertext.filters[0].phase > 100) document.all.Zittertext.filters[0].phase = 0; document.all.Zittertext.filters[0].phase += 10; if(document.all.Zittertext.filters[0].strength > 10) document.all.Zittertext.filters[0].strength = 1; document.all.Zittertext.filters[0].strength += 1; window.setTimeout("DynWave()",100);} DynWave(); //--></script> </center> </div> </body> </html>