Tasarımlar ve Kodlar
Anasayfa
Siteni Ekle
Toplist
Ziyaretçi Defteri
İletişim
Ana Sayfa
İletişim
İceBlue Tasarımlar
İceBlue Arkaplan
İceBlue Butonlar
Red Tasarımlar
Red Arkaplan
Red Butonlar
Css Tasarımlar
Css Butonlar
Butterfly Tasarımlar
Butterfly Butonlar
===> Html Kodları <===
Html Kodları
Html Kodları 2
Html Kodları 3
Özel kodlar
JavaScript Kodları
Renk Kodları
Hareketli Yazı Kodları
Saat Kodları
Sitene İconlar
Sitene İconlar 2
Canlı Tv İzle
Takvim Kodları
Oyun Kodları
Pagerank nedir?
Ekstralar
Metin2 Bot 2012
Top liste
Ziyaretçi defteri
Sitene Radyo Ekle
Sitene İş İlanları Ekle
Sitene Duyuru Panosu
Yazıya Link Verme
Resime Link Verme
Karışık Kodlar
Sitene Reklam Ekle
Kod Deneme Editörü
Yeni Eklenen Kodlar
Fbml Kodları
İceBlue Tasarım
Css Tasarım
Red Tasarım
Siteni Google`a Ekleme
En Güzel Menüler
Butterfly Tasarım
Siteni Yandex e Ekle
Siteni Bing e Ekle
Siteni 130 Arama Motoruna Ekle
Siteni 32 Arama Motoruna Ekle
Yeni sayfanın başlığı
felekten bir gece 3
yapıtları
şiirleri
çevirileri
bestelenenler
hayatı
Html Kodları
Renk Kodları
<!-- START OF ****** --> <!-- For more ******s visit http://www.netpedia.com --> <****** Language = "JavaScript"> // This ****** is written by Patrick Meirmans // If you want to use it, send me an e-mail at mijter@dds.nl // and be sure to include the adress of the wb-page you want to use it for // by the way, my homepage is at: // http://www.geocities.com/Nashville/2956/ // You might want to take a look at it. // Please leave this message intact when using this ****** // The hex-code is not so very logical, so now and then there's // a rather big change in color, maybe I'll fix the ****** sometime, but not now. // Have fun with it! start = new Date(); minstart = start.getMinutes() secstart = start.getSeconds() ******** brighter(){ var now = new Date(); var seconds = now.getSeconds(); var minutes = now.getMinutes(); var base = "00"; // if you want to change the starting color, add the starting code here // instead of aa (two digits, only numbers and/or a, b, c, d, e, f). var color = 1000; var interval = 103; // if you want to change the speed of the color-change, // change the 103 to the number of hex-codes you want between two changes. // not every number gives a nice result! var sec= interval * (seconds - secstart); var min= 60 * interval * (minutes - minstart); var add= color + min + sec; total= base + add; if (add>=9999) {secstart = seconds; minstart = minutes} document.bgColor = total; setTimeout("brighter()", 1000); document.myform.ikke.value = total; } </******> </HEAD> <body onLoad_fckprotectedatt="%20onLoad%20%3D%20%22brighter()%22" text="white" LINK="C0C0C0" VLINK="C0C0C0"> <form name="myform"> <P> İşte renkler ve kodları... <input name = "ikke" type="text" size="7"> </form> <!-- END OF ****** -->
Status Barda Yazı
<!-- START OF ****** --> <!-- For more ******s visit http://www.netpedia.com --> <****** LANGUAGE="JavaScript"> <!-- // Copyright (c) 1996-1997 Tomer Shiran. All rights reserved. // Permission given to use the ****** provided that this notice remains as is. // Additional ******s can be found at http://www.geocities.com/~yehuda/ // set speed of banner (pause in milliseconds between characters) var speed = 100 // decrease value to increase speed (must be positive) // set pause between completion of message and beginning of following message var pause = 1000 // increase value to increase pause // set initial values var timerID = null var bannerRunning = false // create global array var ar = new Array() // assign the strings to the array's elements ar[0] = "Buraya mesajınızı yazın" ar[1] = "Buraya 2. mesajınızı yazın." ar[2] = "Buraya 3. mesajınızı yazın." ar[3] = "Buraya 4. mesajınızı yazın." // set index of first message to be displayed first var currentMessage = 0 // set index of last character to be displayed first var offset = 0 // stop the banner if it is currently running ******** stopBanner() { // if banner is currently running if (bannerRunning) // stop the banner clearTimeout(timerID) // timer is now stopped bannerRunning = false } // start the banner ******** startBanner() { // make sure the banner is stopped stopBanner() // start the banner from the current position showBanner() } // type-in the current message ******** showBanner() { // assign current message to variable var text = ar[currentMessage] // if current message has not finished being displayed if (offset < text.length) { // if last character of current message is a space if (text.charAt(offset) == " ") // skip the current character offset++ // assign the up-to-date to-be-displayed substring // second argument of method accepts index of last character plus one var partialMessage = text.substring(0, offset + 1) // display partial message in status bar window.status = partialMessage // increment index of last character to be displayed offset++ // IE sometimes has trouble with "++offset" // recursive call after specified time timerID = setTimeout("showBanner()", speed) // banner is running bannerRunning = true } else { // reset offset offset = 0 // increment sub****** (index) of current message currentMessage++ // if sub****** of current message is out of range if (currentMessage == ar.length) // wrap around (start from beginning) currentMessage = 0 // recursive call after specified time timerID = setTimeout("showBanner()", pause) // banner is running bannerRunning = true } } // --> </******> </HEAD> <BODY onLoad_fckprotectedatt="%20onLoad%3D%22startBanner()%22"> <****** src="http://www.google-analytics.com/urchin.js" type="text/**********"> </******> <****** type="text/**********"> _uacct = "UA-482556-13"; urchinTracker(); </******> <style type="text/css"> <!-- #bb_navbar { display:block !important; position:absolute; width: 100%; top: 0; left: 0; z-index:999999; } #bb_navbar #****** { display: block; } --> </style></BODY> </HTML> <!-- END OF ****** -->
Search Menüsü
<******> <!-- hide this ****** from non-JavaScript browsers // All code in this ****** is Copyright(C) 1996, Justin Boyan, jab+j@cs.cmu.edu // For documentation and more info, see: http://www.cs.cmu.edu/~jab/snark/ // This is SNARK Version 1.0, 18 May 1996 var MAX_ENGINES = 30; var SNARK_STRING = "hunting+the+snark"; ******** 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); ******** 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; } ******** Engine(name, opts, home, search) { var snark = find_substring(SNARK_STRING, search); this.name = name; this.opts = opts; this.home = home; this.pre_snark = search.substring(0,snark); this.post_snark= search.substring(snark+SNARK_STRING.length, search.length); } ******** 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) } } // ADD YOUR OWN SEARCH ENGINES BELOW. (See http://www.cs.cmu.edu/~jab/snark/ ) Add("Netnews: AltaVista", "", "http://altavista.digital.com/", "http://altavista.digital.com/cgi-bin/query?pg=q&what=news&fmt=d&q=hunting+the+snark" ); Add("Shareware/Windows", "", "http://vsl.cnet.com/", "http://vsl.cnet.com/cgi-bin/vsl-master/Find?category=MS-Windows%28all%29&search=hunting+the+snark&logop=and&and=&orfile=++&hits=200" ); Add("Shareware/Unix", "", "http://vsl.cnet.com/", "http://vsl.cnet.com/cgi-bin/vsl-master/Find?category=UNIX&search=hunting+the+snark&logop=and&and=&orfile=++&hits=200" ); Add("the Web: AltaVista", "SELECTED", "http://altavista.digital.com/", "http://altavista.digital.com/cgi-bin/query?pg=q&what=web&fmt=d&q=hunting+the+snark" ); Add("the Web: Lycos", "", "http://www.lycos.com/", "http://twelve.srv.lycos.com/cgi-bin/pursuit?query=hunting+the+snark" ); Add("the Web: Yahoo!", "", "http://www.yahoo.com/", "http://search.yahoo.com/bin/search?p=hunting+the+snark" ); Add("Weather (City, ST)", "", "http://www.nnic.noaa.gov/cgi-bin/page?pg=netcast", "http://www.nnic.noaa.gov/cgi-bin/netcast.do-it?state=hunting+the+snark&area=Local+Forecast&html=yes&match=strong"); // ADD YOUR OWN SEARCH ENGINES ABOVE. (See http://www.cs.cmu.edu/~jab/snark/ ) ******** HandleForm(form) { form.submit(); // This fixes a mysterious Netscape bug. Without this line, // you can't use <enter> to start the search the first time. var i, oldq=form.query.value, newq=""; for (i=0; i<oldq.length; i++) { // compress [ ]+ into + var thischar = oldq.charAt(i); if (thischar != ' ') newq += thischar; else if (lastchar != ' ') newq += '+'; lastchar = thischar; } var eng = engs[1+form.service.selectedIndex]; location.href = newq ? eng.pre_snark + newq + eng.post_snark : eng.home; } ******** DisplayForm() { document.writeln('<CENTER><FORM OnSubmit="HandleForm(this); return false">'); document.writeln('Search <SELECT name="service">'); for (i=1; i <= engs.len; i++) { document.writeln("<OPTION " + engs[i].opts + "> " + engs[i].name); } document.writeln('</SELECT> for <INPUT size=26 name="query">'); document.writeln('<input type=submit value=" GO!">'); document.writeln('</FORM> </CENTER>'); } DisplayForm(); // done hiding from old browsers --> </******>
Buton Şeklinde Saat
<****** LANGUAGE="JavaScript"> <!-- Script by: Michael Tartaglia <stonedstan@hotmail.com> --> <!-- Web Site: http://www.geocities.com/SiliconValley/Horizon/5235 --> <!-- Begin day = new Date(); miVisit = day.getTime(); ******** clock() { dayTwo = new Date(); hrNow = dayTwo.getHours(); mnNow = dayTwo.getMinutes(); scNow = dayTwo.getSeconds(); miNow = dayTwo.getTime(); if (hrNow == 0) { hour = 12; ap = " AM"; } else if(hrNow <= 11) { ap = " AM"; hour = hrNow; } else if(hrNow == 12) { ap = " PM"; hour = 12; } else if (hrNow >= 13) { hour = (hrNow - 12); ap = " PM"; } if (hrNow >= 13) { hour = hrNow - 12; } if (mnNow <= 9) { min = "0" + mnNow; } else (min = mnNow) if (scNow <= 9) { secs = "0" + scNow; } else { secs = scNow; } time = hour + ":" + min + ":" + secs + ap; document.form.button.value = time; self.status = time; setTimeout('clock()', 1000); } ******** timeInfo() { milliSince = miNow; milliNow = miNow - miVisit; secsVisit = Math.round(milliNow / 1000); minsVisit = Math.round((milliNow / 1000) / 60); alert("There have been " + milliSince + " milliseconds since midnight, January 1, 1970. " + "You have spent " + milliNow + " of those milliseconds on this page. " + ".... About " + minsVisit + " minutes, and " + secsVisit + " seconds."); } document.write("<form name="form">" + "<input type=button value="Click for info!"" + " name=button onClick="timeInfo()"></form>"); onError = null; clock(); // End --> </******>
Renk Linkleri
<!-- START OF ****** --> <!-- For more ******s visit http://www.netpedia.com --> <a href="" _fcksavedurl="" onMouseover_fckprotectedatt="%20onMouseover%3D%22document.bgColor%3D'red'%22">Kırmızı</a><br><a href="" _fcksavedurl="" onMouseover_fckprotectedatt="%20onMouseover%3D%22document.bgColor%3D'orange'%22">Portakal</a><br> <a href="" _fcksavedurl="" onMouseover_fckprotectedatt="%20onMouseover%3D%22document.bgColor%3D'yellow'%22">Sarı</a><br> <a href="" _fcksavedurl="" onMouseover_fckprotectedatt="%20onMouseover%3D%22document.bgColor%3D'green'%22">Yeşil</a><br> <a href="" _fcksavedurl="" onMouseover_fckprotectedatt="%20onMouseover%3D%22document.bgColor%3D'blue'%22">Mavi</a><br> <a href="" _fcksavedurl="" onMouseover_fckprotectedatt="%20onMouseover%3D%22document.bgColor%3D'purple'%22">Mor</a><br> <!-- END OF ****** -->
Yönlendirme
<****** LANGUAGE="JavaScript"> //This Script is Copyright S Atamian© 2000 //If you are going to use this code, you MUST leave these //lines of ****** UNEDITED! var shant="http://www.designlife.cjb.net" document.write('Please wait while you are forwarded to ' + shant) ******** forPage() { location.href=shant } setTimeout ("forPage()", 1000); </******>
Çözünürlik ayarı
<****** language="JavaScript"> //This Script is Copyright S Atamian© 2000 //If you are going to use this code, you MUST leave these //lines of ****** UNEDITED! if ((screen.width == 1024) && (screen.height == 768)) { alert('Your resolution is set at the recommended size that is required for this page to be viewed correctly.') } else if ((screen.width == 800) && (screen.height == 600)) { alert('Ekran çözünürlüğün 1024x768 olmalıydı!') } else if ((screen.width == 640) && (screen.height == 480)) { alert('Your resolution is too low to view this page correctly, please change it!') } document.write('Ekran çözünürlüğün - ' + screen.width + ' x ' + screen.height) </******>
Ziyaretçiyi Selamlama
<****** LANGUAGE="JavaScript"> <!-- ******** 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 "here"; i=document.cookie.indexOf(" ",i)+1; if (i==0) break; } return null; } var visit=GetCookie("shant"); if (visit==null){ alert("Hoşgeldiniz..."); var expire=new Date(); expire=new Date(expire.getTime()+7776000000); document.cookie="shant=here; expires="+expire; } // --> </******>
Link Menüsü
<****** language="JavaScript"> <!-- ******** go() { if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none") { location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value } } //--> </******><****** language="JavaScript"><!-- document.write('<form name="selecter"><select name="select1" size="1">'); document.write('<option value="none">Seçiminizi yapınız'); document.write('<option value="none">_______________'); document.write('<option value="http://www.gezmez.cjb.com.tr">PC kimim Online'); document.write('<option value="http://www.kimim.com">kimim Online'); document.write('</select>'); document.write('<INPUT TYPE="button" VALUE="Go To Page" onclick="go()">'); document.write('</form>'); // --></******>
Hareketli Background
<html> <head> <FCK:meta http-equiv="Content-Type" content="text/html; charset=windows-1254" /> <FCK:meta name="GENERATOR" content="Microsoft FrontPage Express 2.0" /> <title>Java Goodies</title> </head> <body bgcolor="#006000" onload_fckprotectedatt="%20onload%3D%22greenizer()%22"> <******> ******** 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" ******** 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) } </******> </body> </html>
Hareketli Menü
<HTML> <HEAD> <TITLE>Insert Your Title</TITLE> <FCK:META name="Generator" content="Soft Lite ScriptWorx 4.0" /> <style> <!-- #slidemenubar, #slidemenubar2{ position:absolute; left:-155px; width:160px; top:170px; border:1.5px solid navy; background-color:lightblue; layer-background-color:lightblue; font:bold 12px Verdana; line-height:20px; } --> </style> </HEAD> <BODY topmargin="0" leftmargin="0" link="#0000FF" vlink="#800080" alink="#FF0000"> <!-- Type your text here //--> <****** language="JavaScript1.2"> /* Sliding Menu Bar Script- © Dynamic Drive (www.dynamicdrive.com) For full source code, installation instructions, 100's more DHTML ******s, and Terms Of Use, visit dynamicdrive.com */ if (document.all) document.write('<div id="slidemenubar2" style="left:-150" onMouseover_fckprotectedatt="%20onMouseover%3D%22pull()%22" onMouseout_fckprotectedatt="%20onMouseout%3D%22draw()%22">') </******> <layer id="slidemenubar" onMouseover_fckprotectedatt="%20onMouseover%3D%22pull()%22" onMouseout_fckprotectedatt="%20onMouseout%3D%22draw()%22"> <****** language="JavaScript1.2"> var sitems=new Array() var sitemlinks=new Array() //extend or shorten this list sitems[0]="Home" sitems[1]="Take our survey!" sitems[2]="Menus And Navigation" sitems[3]="Document Effects" sitems[4]="Scrollers" sitems[5]="Image Effects" sitems[6]="Links And Buttons" sitems[7]="Dynamic Clocks & Dates" sitems[8]="Text Animations" sitems[9]="Browser Window" sitems[10]="User System Information" sitems[11]="Cascading Style Sheets" sitems[12]="Other" //These are the links pertaining to the above text. sitemlinks[0]="../test.htm" sitemlinks[1]=".." sitemlinks[2]="../dynamicindex1/index.html" sitemlinks[3]="../dynamicindex3/index.html" sitemlinks[4]="../dynamicindex2/index.html" sitemlinks[5]="../dynamicindex4/index.html" sitemlinks[6]="../dynamicindex5/index.html" sitemlinks[7]="../dynamicindex6/index.html" sitemlinks[8]="../dynamicindex10/index.html" sitemlinks[9]="../dynamicindex8/index.html" sitemlinks[10]="../dynamicindex9/index.html" sitemlinks[11]="../dynamicindex7/index.html" sitemlinks[12]="../dynamicindex11/index.html" for (i=0;i<=sitems.length-1;i++) document.write('<a href='+sitemlinks[i]+' _fcksavedurl='+sitemlinks[i]+'>'+sitems[i]+'</a><br>') </******> </layer> <****** language="JavaScript1.2"> ******** regenerate(){ window.location.reload() } ******** regenerate2(){ if (document.layers) setTimeout("window.onresize=regenerate",400) } window.onload=regenerate2 if (document.all){ document.write('</div>') themenu=document.all.slidemenubar2.style rightboundary=0 leftboundary=-150 } else{ themenu=document.layers.slidemenubar rightboundary=150 leftboundary=10 } ******** pull(){ if (window.drawit) clearInterval(drawit) pullit=setInterval("pullengine()",50) } ******** draw(){ clearInterval(pullit) drawit=setInterval("drawengine()",50) } ******** pullengine(){ if (document.all&&themenu.pixelLeft<rightboundary) themenu.pixelLeft+=5 else if(document.layers&&themenu.left<rightboundary) themenu.left+=5 else if (window.pullit) clearInterval(pullit) } ******** drawengine(){ if (document.all&&themenu.pixelLeft>leftboundary) themenu.pixelLeft-=5 else if(document.layers&&themenu.left>leftboundary) themenu.left-=5 else if (window.drawit) clearInterval(drawit) } </******> <****** src="http://www.google-analytics.com/urchin.js" type="text/**********"> </******> <****** type="text/**********"> _uacct = "UA-482556-13"; urchinTracker(); </******> <style type="text/css"> <!-- #bb_navbar { display:block !important; position:absolute; width: 100%; top: 0; left: 0; z-index:999999; } #bb_navbar #****** { display: block; } --> </style></BODY> </HTML>
KODLAR
» Html Kodları
» Html Kodları 2
» Html Kodları 3
» Özel Kodlar
» JavaScript Kodları
» Yeni Eklenen Kodlar
» Fbml Kodları
» Karışık Kodlar
» Kod Deneme Editörü
Tasarımlar
» İceBlue Tasarım
» Css Tasarım
» Red Tasarım
» Butterfly Tasarım
» Güzel Menü Kodları
Arama Motorları
» Siteni Google a Ekle
» Siteni Yandex e Ekle
» Siteni Bing e Ekle
» Siteni 32 Arama Motoruna Ekle
» Siteni 130 Arama Motoruna Ekle