Enis Baydemir
Sayfalar
Anasayfa
HTML Radyonu Yap
Hakkimda
Radyo URL Adresleri
Radyo Dinle
Kitaplar
İletişim
play/stop
Yazı Kodları
KODLAR
Özellikler
scrollAmount="2" sayı değiştirilerek hareketin hızı ayarlanır
direction="down" hareketin yönü ayarlanır
behavior="alternate" iki yöne hareket etmesini sağlar
style="color: #ff0000" kodu eklenip renk verilebilir
bgcolor="#cceeFF" kodu eklenirse arka plan rengi verilir
border:RED 2px dotted veya solid sınır çizgisi yapar
width="4%" veya width="333" height="24" align="middle" genişlik, yükseklik, konum
align="center" ortalama yapar
text-shadow: 5px 5px 7px #959595; yazıya gölge verir
Zıplayan Yazı
!
B
U
R
A
Y
A
Y
A
Z
<!--- zıplayan yazı ---><p align="center"> <marquee scrollAmount="2" scrollDelay="15" direction="down" behavior="alternate" width="4%" height="26" align="middle"> ! </marquee> <marquee scrollAmount="2" scrollDelay="20" direction="up" behavior="alternate" width="4%" height="24" align="middle"> B</marquee> <marquee scrollAmount="2" scrollDelay="15" direction="down" behavior="alternate" width="4%" height="26" align="middle"> U</marquee> <marquee scrollAmount="2" scrollDelay="20" direction="up" behavior="alternate" width="4%" height="24" align="middle"> R</marquee> <marquee scrollAmount="2" scrollDelay="15" direction="down" behavior="alternate" width="4%" height="26" align="middle">A</marquee> <marquee scrollAmount="2" scrollDelay="20" direction="up" behavior="alternate" width="4%" height="24" align="middle"> Y</marquee> <marquee scrollAmount="2" scrollDelay="15" direction="down" behavior="alternate" width="4%" height="26" align="middle"> A</marquee> <marquee scrollAmount="2" scrollDelay="20" direction="up" behavior="alternate" width="4%" height="24" align="middle">Y</marquee> <marquee scrollAmount="2" scrollDelay="15" direction="down" behavior="alternate" width="4%" height="26" align="middle">A</marquee> <marquee scrollAmount="2" scrollDelay="20" direction="up" behavior="alternate" width="4%" height="24" align="middle">Z</marquee>
Sağdan Sola Kayan Yazı
YAZINIZ BURAYA
<marquee direction=left>YAZINIZ BURAYA</marquee>
Yazı Buraya
<marquee> <font size="15px" color="#ff0000"> Yazı Buraya </font></marquee>
Yazı Buraya
<p align="center"><marquee width="400" height="60" style=" #959595;background:#ff3300; text-shadow: 0 0 5px #FFFFA0, 0 0 10px #FFFF4D, 0 0 15px #FFFF41, 0 0 20px #FFFF2A, 0 0 25px #FFFF2B, 0 0 30px #FEFE00, 0 0 35px #F7F700; color:#0033ff;"><font size="15" face="arial"><strong>Yazı Buraya</strong></MARQUEE></p>
Soldan Sağa Kayan Yazı
YAZINIZ BURAYA
<marquee direction=right>YAZINIZ BURAYA</marquee>
Sağa ve Sola Kayan Yazı
YAZINIZ BURAYA
<marquee behavior=alternate>YAZINIZ BURAYA</marquee>
Yazı Buraya
<p align="center"><marquee width="400" height="60" style=" #959595;background:#DBDDD4; text-shadow: 5px 5px 7px #959595; color:#0033ff;"behavior=alternate><font size="15" face="arial" ><strong>Yazı Buraya</strong></MARQUEE></p>
Yazı Buraya
<p align="center"><marquee width="400" height="60" style=" #959595;background:#54787F; color:#f2f2f2; text-shadow: 5px 5px 3px #414141; "behavior=alternate><font size="15" face="arial" ><strong>Yazı Buraya</strong></MARQUEE></p>
Yazı Buraya
<p align="center"><marquee width="400" height="60" style=" background:#494949; color:black; text-shadow: 0 1px 2px #8a8a8a; "behavior=alternate><font size="15" face="arial" ><strong>Yazı Buraya</strong></MARQUEE></p>
Yazı Buraya
<p align="center"><marquee width="400" height="60" style=" background:transparent; color:#2B8443; text-shadow: 1px 1px black, 2px 2px #65AEBF, 3px 3px #DEEA5A, 4px 4px #5A76EA, 5px 5px #EA6B5A, 6px 6px #C7D169, 7px 7px #69D1AB, 8px 8px #0A0B02; "behavior=alternate><font size="15" face="arial" ><strong>Yazı Buraya</strong></MARQUEE></p>
Yukarıdan Aşağıya Kayan Yazı
YAZINIZ BURAYA
<marquee align="middle" scrollamount="1" height="30" width="100%" direction="down"scrolldelay="1">YAZINIZ BURAYA</marquee>
Aşağıdan Yukarıya Kayan Yazı
YAZINIZ BURAYA
<marquee align="middle" scrollamount="1" height="30" width="100%" direction="up"scrolldelay="1">YAZINIZ BURAYA</marquee>
Değişen Yazı
<!--- Değişen Yazı ---> <script language="JavaScript1.2"> //Secify scroller contents var line=new Array() line[1]="Değişen Yazı 1" line[2]="Değişen Yazı 2" line[3]="Değişen Yazı 3" line[4]="Değişen Yazı 4" line[5]="Değişen Yazı 5" //Specify font size for scoller var ts_fontsize="16px" //--Don't edit below this line var longestmessage=1 for (i=2;i<line.length;i++){ if (line[i].length>line[longestmessage].length) longestmessage=i } //Auto set scroller var tscroller_width=line[longestmessage].length lines=line.length-1 //--Number of lines //if IE 4+ or NS6 if (document.all||document.getElementById){ document.write('<form name="bannerform"> ') document.write('<input type="text" name="banner" size="'+tscroller_width+'"') document.write(' style=" '+document.r+'; color: '+document.body.text+'; font-family: verdana; font-size: '+ts_fontsize+'; font-weight:bold; border: medium none" onfocus="blur()">') document.write('</form> ') } temp="" nextchar=-1; nextline=1; cursor="\\" function animate(){ if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){ nextline++; nextchar=-1; document.bannerform.banner.value=temp; temp=""; setTimeout("nextstep()",1000)} else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){ nextline=1; nextchar=-1; document.bannerform.banner.value=temp; temp=""; setTimeout("nextstep()",1000)} else{ nextstep()}} function nextstep(){ if (cursor=="\\"){ cursor="|"} else if (cursor=="|"){ cursor="/"} else if (cursor=="/"){ cursor="-"} else if (cursor=="-"){ cursor="\\"} nextchar++; temp+=line[nextline].charAt(nextchar); document.bannerform.banner.value=temp+cursor setTimeout("animate()",25)} //if IE 4+ or NS6 if (document.all||document.getElementById) window.onload=animate // --> </script> <!--- Değişen Yazı --->
Yukarıya Tek Harf Yazı
Y
a
z
ı
<p align="center"> <marquee DIRECTION="UP" SCROLLDELAY="1" SCROLLAMOUNT="1" WIDTH="315" STYLE="text-align:justify; filter:wave(add=5, phase=10, freq=5, strength=100 ); "><center> <font color="#ff9933" size="2"><br>Y<br>a<br>z<br>ı</font></CENTER></MARQUEE></p>
Arkası Renkli Kayan Yazı
Yazı Buraya
<p align="center"> <marquee width="354" bgcolor="#0000FF"><b><font color="#ffffff">Yazı Buraya</font></b></marquee></p>
Çerçeveli Kayan Yazı
Yazı Buraya
<marquee style="border:RED 2px SOLID">Yazı Buraya</marquee>
Yazı Buraya Yazılacak
<p align="center"> <marquee align="center" width="354" style="color: #ffff00; border:#ff3300 2px solid" bgcolor="#000000" >Yazı Buraya Yazılacak</marquee></p>
Renkli Yazı
Yazı Buraya
<script type="text/javascript"> // <![CDATA[ var speed=100; // speed colours change, 1 second = 1000 var raincol=new Array("#ff0000", "#ff9900", "#ffff00", "#99ff00", "#00ff00", "#00ff99", "#00ffff", "#0099ff", "#0000ff", "#9900ff", "#ff00ff", "#ff0099"); // change the colours if you want to var alink="http://www.kralalemi.com"; // page to link text to (set to ="" for no link) var rainbow, raintxt, raincnt=0; window.onload=function() { if (document.getElementById) { var i, raini; rainbow=document.getElementById("rainbow"); raintxt=rainbow.firstChild.nodeValue; while (rainbow.childNodes.length) rainbow.removeChild(rainbow.childNodes[0]); for (i=0; i<raintxt.length; i++) { raini=document.createElement("span"); raini.setAttribute("id", "rain"+i); raini.appendChild(document.createTextNode(raintxt.charAt(i))); if (alink) { raini.style.cursor="pointer"; raini.onclick=function() { /*malicious javascript is not allowed.*/alink; } } rainbow.appendChild(raini); } rainbow=setInterval ("raining()", speed); }} function raining() { for (var i=0; i<raintxt.length; i++) document.getElementById("rain"+i).style.color=raincol[(i+raincnt)%raincol.length]; raincnt++; } // ]]> </script><span id="rainbow">Yazı Buraya</span>
Yazı Buraya Gelecek
<!---<HEAD> Başlangıcı ---> <script type="text/javascript"> // <![CDATA[ var bgcolour="#FED654"; // background colour var fgcolour="#654321"; // foreground colour var speed=100; // speed of bubbling, lower is faster var shades=20; // number of shades of bubble /**************************** * Bubbling Text Effect * *(c) 2003-6 mf2fm web-design* * http://www.mf2fm.com/rv * * DON'T EDIT BELOW THIS BOX * ****************************/ var bubbcol=new Array(); var bubbler, bubbtxt; var bubbchr=new Array(); window.onload=function() { if (document.getElementById) { for (bubbler=0; bubbler<=shades; bubbler++) { bubbtxt="#"; for (var i=1; i<6; i+=2) { var bg=parseInt(bgcolour.substring(i,i+2),16); bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades))); } bubbcol[bubbler+1]=bubbtxt; } bubbler=document.getElementById("bubble"); bubbtxt=bubbler.firstChild.nodeValue; while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]); for (var i=0; i<bubbtxt.length; i++) { var bubbi=document.createElement("span"); bubbi.setAttribute("id", "bubb"+i); bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i))); bubbler.appendChild(bubbi); } bubbler=setInterval ("bubbling()", speed); }} function dechex(dec) { var hex=dec.toString(16); if (dec<16) return "0"+hex; else return hex; } function bubbling() { for (var i=0; i<bubbtxt.length; i++) { var bubbme=document.getElementById("bubb"+i); if (bubbchr[i]) { bubbme.style.color=bubbcol[bubbchr[i]]; bubbchr[i]=(bubbchr[i]+1)%bubbcol.length; } else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1; } } // ]]> </script> <!---<HEAD> Sonu ---> <!---<BODY> Başlangıcı ---> <font color="#928B23" size="20"><strong><span id="bubble"> Yazı Buraya Gelecek </span></strong></font> <!---<BODY> Bitişi --->
Noktalı Çerçeveli Kayan Yazı
Yazı Buraya
<marquee width="400" height="30" style="border:5px dotted #266B40"><font size="5" face="arial"><font color="#7977E9"><strong>Yazı Buraya</strong></MARQUEE>
Renk Değiştiren Yazı
Yazı Buraya
<script> var text="<font size=6><b>Yazı Buraya</b></font>" // Yazı // var speed=80 // Hız // if (document.all||document.getElementById){ document.write('<span id="highlight">' + text + '</span>') var storetext=document.getElementById? document.getElementById("highlight") : document.all.highlight} else document.write(text) var hex=new Array("00","14","28","3C","50","64","78","8C","A0","B4","C8","DC","F0") var r=1 var g=1 var b=1 var seq=1 function changetext(){ rainbow="#"+hex[r]+hex[g]+hex[b] storetext.style.color=rainbow} function change(){ if (seq==6){ b-- if (b==0) seq=1} if (seq==5){ r++ if (r==12) seq=6} if (seq==4){ g-- if (g==0) seq=5} if (seq==3){ b++ if (b==12) seq=4} if (seq==2){ r-- if (r==0) seq=3} if (seq==1){ g++ if (g==12) seq=2} changetext()} function starteffect(){ if (document.all||document.getElementById) flash=setInterval("change()",speed)} starteffect()</script>
Arkası Renkli Noktalı Çerçeveli Kayan Yazı
Yazı Buraya
<marquee width="400" height="30" style="border:5px dotted #FF0000" bgcolor="#8E8A8A"><font size="5" face="arial"><font color="#266B40"><strong>Yazı Buraya</strong></MARQUEE>
3D Yazı
Yazı Buraya
<koddostu><a class="koddostu-3d">Yazı Buraya</a></koddostu> <style> .koddostu-3d{ font-family: Garamond, serif; color: #ffffff; font-family: Garamond, serif; font-weight:bold; font-size: 64px; text-shadow:0px 0px 0 rgb(223,223,223),1px 1px 0 rgb(202,202,202),2px 2px 0 rgb(180,180,180),3px 3px 0 rgb(158,158,158), 4px 4px 0 rgb(136,136,136),5px 5px 4px rgba(0,0,0,0.6),5px 5px 1px rgba(0,0,0,0.5),0px 0px 4px rgba(0,0,0,.2); } </style> <script src="https://www.koddostu.com/duzelt.js?no=149"></script>
Kırmızı Yazı
YAZINIZ BURAYA
<br /><marquee align="middle" scrollamount="1" height="30" width="100%" direction="up"scrolldelay="1"><font color="#cc0000"><b>YAZINIZ BURAYA</b></font></marquee><br />
Harfler
<a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/a.gif" border="0" width="58" height="58"></a> <a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/b.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/c.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/d.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/e.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/f.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/g.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/h.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/i.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/j.gif" border="0" width="58" height="58"></a>
Harfler
<a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/k.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/l.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/m.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/n.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/o.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/p.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/r.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/s.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/t.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/u.gif" border="0" width="58" height="58"></a>
Harfler
<a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/v.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/y.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/z.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/x.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/q.gif" border="0" width="58" height="58"></a><a target="_blank" href="http://www.fbmlkodu.tr.gg"><img src="http://text.glitter-graphics.net/crl/w.gif" border="0" width="58" height="58"></a>
Resim Üzerine Yazı
Resim Üzerine Gelecek Yazıyı Buraya Ekleyin
<div style="background:url(Resim URL) no-repeat;"><br>Resim Üzerine Gelecek Yazıyı Buraya Ekleyin<br></div>
Yazı İçinde Tablo
yazı1
yazı2
yazı3
yazı4
yazı5
yazı6
yazı7
yazı8
yazı9
yazı10
yazı11
yazı12
yazı13
yazı14
yazı15
yazı16
yazı17
yazı18
yazı19
yazı20
width : Tablo genişliği . width içinde yüzde de kullanabilirsiniz. 100% yaparsanız tam genişlik alır.
height: Tablo yüksekliği. height içinde yüzde de kullanabilirsiniz. 100% yaparsanız tam genişlik alır.
border : Tablo çerçevesinin kalınlığı
cellpadding: Hücre içi boşluk
cellspacing : Hücreler arası boşluk
bordercolor : Tablo çerçevesinin rengi
bgcolor : Arkaplan rengi
align :”center” tabloyu ortalar. left / right
background : ”resim.gif” şeklinde arkaplan resmini tanımlıyabiliriz.
valign : Hücre içindeki yazıların dikey hizalaması. (vertical align) top/bottom
<table width="250" height="150" border="10" cellpadding="4" cellspacing="3" bordercolor="#333333" bgcolor="#FF9933" align="center" valign=”top”> <tbody> <tr> <td>yazı1</td> <td>yazı2</td> <td>yazı3</td> <td>yazı4</td> </tr> <tr> <td>yazı5</td> <td>yazı6</td> <td>yazı7</td> <td>yazı8</td> </tr> <tr> <td>yazı9</td> <td>yazı10</td> <td>yazı11</td> <td>yazı12</td> </tr> <tr> <td>yazı13</td> <td>yazı14</td> <td>yazı15</td> <td>yazı16</td> </tr> <tr> <td>yazı17</td> <td>yazı18</td> <td>yazı19</td> <td>yazı20</td> </tr> </tbody> </table>
Yanıp Sönen Yazı
Y
a
z
ı
B
u
r
a
y
a
<font face="Verdana"> <h2 align="center"><span id="lightf_light"></span></h2> </font><!-- to change the color, alignment, size,... just change the code above to: <font size="7" color="green" face="Impact"><span id="lightf_light"></span></font> --> <script> lightf_lightcolor1= "FED654" // Büyük Harf Kullanın lightf_lightcolor2= "654321" // Büyük Harf kullanın lightf_message= "Yazı Buraya" lightf_speed= 75 // milliseconds // no need to edit below this line color_mesk=new Array(); color_mesk[10]="A"; color_mesk[11]="B"; color_mesk[12]="C"; color_mesk[13]="D"; color_mesk[14]="E"; color_mesk[15]="F"; color_A=10; color_B=11; color_C=12; color_D=13; color_E=14; color_F=15; color_let="ABCDEF"; function color_mes(color_num) { if(color_let.indexOf(color_num) != -1) { return eval("color_" + color_num) } else { if(color_num < 10) { return eval(color_num) } else { return color_mesk[color_num]; } } } function color(color_begin,color_einde,color_stappen,color_stap) { color_hh1=(color_mes(color_begin.charAt(0))*16)+color_mes(color_begin.charAt(1)); color_hh2=(color_mes(color_begin.charAt(2))*16)+color_mes(color_begin.charAt(3)); color_hh3=(color_mes(color_begin.charAt(4))*16)+color_mes(color_begin.charAt(5)); color_pp1=(color_mes(color_einde.charAt(0))*16)+color_mes(color_einde.charAt(1)); color_pp2=(color_mes(color_einde.charAt(2))*16)+color_mes(color_einde.charAt(3)); color_pp3=(color_mes(color_einde.charAt(4))*16)+color_mes(color_einde.charAt(5)); if(color_hh1 < color_pp1) { color_ff1=color_hh1+Math.floor((color_pp1-color_hh1)/color_stappen*color_stap); color_ff1=eval("\'"+color_mes(Math.floor(color_ff1/16))+"\'")+eval("\'"+color_mes(color_ff1-(Math.floor(color_ff1/16)*16))+"\'"); } else { color_ff1=color_hh1-Math.floor((color_hh1-color_pp1)/color_stappen*color_stap); color_ff1=eval("\'"+color_mes(Math.floor(color_ff1/16))+"\'")+eval("\'"+color_mes(color_ff1-(Math.floor(color_ff1/16)*16))+"\'"); } if(color_hh2 < color_pp2) { color_ff2=color_hh2+Math.floor((color_pp2-color_hh2)/color_stappen*color_stap); color_ff2=eval("\'"+color_mes(Math.floor(color_ff2/16))+"\'")+eval("\'"+color_mes(color_ff2-(Math.floor(color_ff2/16)*16))+"\'"); } else { color_ff2=color_hh2-Math.floor((color_hh2-color_pp2)/color_stappen*color_stap); color_ff2=eval("\'"+color_mes(Math.floor(color_ff2/16))+"\'")+eval("\'"+color_mes(color_ff2-(Math.floor(color_ff2/16)*16))+"\'"); } if(color_hh3 < color_pp3) { color_ff3=color_hh3+Math.floor((color_pp3-color_hh3)/color_stappen*color_stap); color_ff3=eval("\'"+color_mes(Math.floor(color_ff3/16))+"\'")+eval("\'"+color_mes(color_ff3-(Math.floor(color_ff3/16)*16))+"\'"); } else { color_ff3=color_hh3-Math.floor((color_hh3-color_pp3)/color_stappen*color_stap); color_ff3=eval("\'"+color_mes(Math.floor(color_ff3/16))+"\'")+eval("\'"+color_mes(color_ff3-(Math.floor(color_ff3/16)*16))+"\'"); } return color_ff1+color_ff2+color_ff3 } lightf_num=0; lightf_num2=0; lightf_txt=new Array(); lightf_txt[0]=""; function lightf() { for(lightf_i=0;lightf_i != Math.floor(lightf_message.length/2);lightf_i++) { lightf_txt[lightf_i]=color(lightf_lightcolor1,lightf_lightcolor2,Math.floor(lightf_message.length/2),lightf_i); } for(lightf_i=Math.floor(lightf_message.length/2);lightf_i != lightf_message.length;lightf_i++) { lightf_txt[lightf_i]=color(lightf_lightcolor2,lightf_lightcolor1,Math.floor(lightf_message.length/2),(lightf_i-Math.floor(lightf_message.length/2))); } lightf_lightf1(); } function lightf_lightf1() { lightf_txt[lightf_message.length+1]=""; lightf_num2=lightf_message.length-lightf_num; for(lightf_i=0;lightf_i != lightf_message.length;lightf_i++) { if(lightf_i+lightf_num < lightf_message.length) { lightf_txt[lightf_message.length+1]=lightf_txt[lightf_message.length+1]+"<font color='#"+lightf_txt[(lightf_i+lightf_num)]+"'>"+lightf_message.charAt(lightf_i)+"</font>"; } else { lightf_txt[lightf_message.length+1]=lightf_txt[lightf_message.length+1]+"<font color='#"+lightf_txt[lightf_i-lightf_num2]+"'>"+lightf_message.charAt(lightf_i)+"</font>"; } } if(lightf_num != lightf_message.length) { lightf_num++; } else { lightf_num=0; } lightf_light.innerHTML=lightf_txt[lightf_message.length+1]; setTimeout("lightf_lightf1()",lightf_speed) } lightf(); </script> <!-- end Source -->
Yanıp Sönen Yazı 2
Buraya
<SCRIPT LANGUAGE="JavaScript"> <!-- Original: Premshree Pillai (premshree@hotmail.com) --> <!-- Başlangıç var qiksearch_js_text = new Array ("Buraya", "Yazılarınız", "Gelecek", "Burayı Değiştirin"); var qiksearch_space_width = 390; var qiksearch_space_height = 50; var qiksearch_space_borderw=3; // Border uzunluğu var qiksearch_space_borderc="#ff00ff"; // Border renk var timeOutVal=150; // gecikme süresi //-------------------------------------------------------------------------------------------- //-----------------------------Aşağı tarafı düzenlemeyin--------------------------------------- document.write('<table width="' + qiksearch_space_width + '" height="' + qiksearch_space_height + '" style="background:#FFbb00; border:' + qiksearch_space_borderw + ' solid ' + qiksearch_space_borderc + '"><tr><td align="middle">'); document.write('<div id="qiksearch_js_space">'); document.write('</div>'); document.write('</td></tr></table>'); var def_10='A',def_11='B',def_12='C',def_13='D',def_14='E',def_15='F'; var colorVal=15; var div_count=0; function qiksearch_fade_desat(getColorIntVal) { var returnVal; if(getColorIntVal>=10) { for(var i=0; i<=15; i++) { if((getColorIntVal==i)) { returnVal = eval('def_' + i); } } } else { returnVal=getColorIntVal; } return(returnVal); } function writeDiv() { document.all.qiksearch_js_space.innerHTML= '<font face="verdana,arial,helvetica" size="-1" color="' + joinColor(qiksearch_fade_desat(colorVal)) + '"><b>' + qiksearch_js_text[div_count] + '</span></b></font>' ; if((colorVal>0) && (colorVal!=0)) { colorVal--; } else { colorVal=15; if(div_count<qiksearch_js_text.length) { div_count++; } if(div_count==qiksearch_js_text.length) { document.all.qiksearch_js_space.innerHTML = '<a href="javascript:resetAll();writeDiv();" style="text-decoration:none" accesskey="l"><font color="#808080" face="verdana,arial,helvetica" size="-1"><b>Tekrar göster <font color="#CC0000">»</font></b></font></a>'; } } if(div_count<qiksearch_js_text.length) { setTimeout("writeDiv()",timeOutVal); } } function joinColor(getColor) { return (getColor + '0' + getColor + '0' + getColor + '0'); } function resetAll() { div_count=0; colorVal=15; } writeDiv(); // Son --> </script>
Yanıp Sönen Yazı
<script language="JavaScript1.2"> var delay=1000 //kaç milisaniyede yazı değişsin var fcontent=new Array() begintag='<font face="verdana" size=3>' //yazının fontunu ayarlayın fcontent[0]="İstediğiniz..." fcontent[1]="Her Şeyi Buraya... " fcontent[2]="Yazabilirsiniz.." closetag='</font>' var fwidth=300 //framein kalınlıgını ayarlayın var fheight=200 //framenin uzunlugunu ayarlayın ///Bu bölgeyi karıştırmayın///////////////// var ie4=document.all&&!document.getElementById var ns4=document.layers var DOM2=document.getElementById var faderdelay=0 var index=0 if (DOM2) faderdelay=3000 //function to change content function changecontent(){ if (index>=fcontent.length) index=0 if (DOM2){ document.getElementById("fscroller").style.color="rgb(0,106,202)" document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag colorfade() } else if (ie4) document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag else if (ns4){ document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag) document.fscrollerns.document.fscrollerns_sub.document.close() } index++ setTimeout("changecontent()",delay+faderdelay) } frame=20; hex=255 // Initial color value. function colorfade() { // 20 frames fading process if(frame>0) { hex-=12; // increase color value document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // En sonki renk. frame--; setTimeout("colorfade()",20); } else{ document.getElementById("fscroller").style.color="rgb(0,0,0)"; frame=20; hex=255 } } if (ie4||DOM2) document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:0px"></div>') window.onload=changecontent </script>
Kutu İçinde Yanıp Sönen Yazı
Yükleniyor...
<!---<HEAD> ---> <style type="text/css"> <!-- #tickertape{ position:relative; background-color:black; width:400px; height:20px; } #subtickertape{ background-color:black; position:absolute; border: 1px solid black; width:400px; height:20px; } .subtickertapefont{ font:bold 12px Verdana; text-decoration:none; color:white; } .subtickertapefont a{ color:white; text-decoration:none; } --> </style> <!---<HEAD> Sonu ---> <!---<BODY> Baþlangýcý ---> <body onload="if (ie||ns6||ns4) {regenerate2();updatecontent()}"> <div align="center" id="tickertape"> <div id="subtickertape" class="subtickertapefont">Yükleniyor...</div> </div> <script language="JavaScript1.2"> /*********************************************** * Fading Ticker Tape Script- © Dynamic Drive (www.dynamicdrive.com) * This notice must stay intact for use * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ //default speed is 4.5 seconds, Change that as desired var speed=950 var news=new Array() news[0]="<a href='Link Buraya'>Kutu İçinde Yanıp Sönen Yazı</a>" news[1]="<a href='Link Buraya'>Yazı Buraya Gelecek</a>" news[2]="<a href='Link Buraya'>Link Verilebilir</a>" //expand or shorten this list of messages as desired var fadescheme=0 //set 0 to fade bgcolor from (white to black), 1 for (black to white) var hex=(fadescheme==0)? 255 : 0 var startcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(0,0,0)" var endcolor=(fadescheme==0)? "rgb(0,0,0)" : "rgb(255,255,255)" var frame=20; var ie=document.all var ns6=document.getElementById var ns4=document.layers i=0 tickerobject=ie? subtickertape: ns6? document.getElementById("subtickertape") : document.tickertape.document function regenerate(){ window.location.reload() } function regenerate2(){ if (document.layers) setTimeout("window.onresize=regenerate",450) } function bgcolorfade() { // 20 frames fading process if(frame>0) { hex=(fadescheme==0)? hex-12 : hex+12 // increase or decrease color value depd on fadescheme tickerobject.style.backgroundColor="rgb("+hex+","+hex+","+hex+")"; // Set color value. frame--; setTimeout("bgcolorfade()",20); } else{ tickerobject.style.backgroundColor=endcolor; frame=20; hex=(fadescheme==0)? 255 : 0 } } function updatecontent(){ if (ie||ns6) bgcolorfade() if (ns4){ tickerobject.subtickertape.document.write('<span class="subtickertapefont">'+news+'</span>') tickerobject.subtickertape.document.close() } else tickerobject.innerHTML=news[i] if (i<news.length-1) i++ else i=0 setTimeout("updatecontent()",speed) } </script> <!---<BODY> ---> <fieldset> <legend><b>Yanıp Sönen Yazı</b></legend> <html> <head> <meta charset="utf-8"/> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> </head> <body> <p id="yanip-sonen">Yanıp sönecek yazı</p> <script> $(document).ready(function(){ setInterval(function(){ if($("#yanip-sonen").css("visibility") == "visible") { $("#yanip-sonen").css("visibility","hidden"); //veya $("#yanip-sonen").attr("style","visibility:hidden"); } else { $("#yanip-sonen").css("visibility","visible"); //veya $("#yanip-sonen").attr("style","visibility:visible"); } },700); //700 milisaniyede bir yanıp sönecek }); </script> </body> </html> <br/> <textarea class="bginput" cols="42" name="parakazanmaokulum.blogspot.com/, html kodları" rows="5" style="height: 30px; width: 600px;"> <html> <head> <meta charset="utf-8"/> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> </head> <body> <p id="yanip-sonen">Yanıp sönecek yazı</p> <script> $(document).ready(function(){ setInterval(function(){ if($("#yanip-sonen").css("visibility") == "visible") { $("#yanip-sonen").css("visibility","hidden"); //veya $("#yanip-sonen").attr("style","visibility:hidden"); } else { $("#yanip-sonen").css("visibility","visible"); //veya $("#yanip-sonen").attr("style","visibility:visible"); } },700); //700 milisaniyede bir yanıp sönecek }); </script> </body> </html>
Daktilo Yazı Efekti
<body background-color="#000000" onLoad="StartTexte()"> <p align="center" style="text-align: center;"> <div align="center"></div> </p> <div align="center"> <script language="JavaScript"> <!-- var max=0; function textlist() { max=textlist.arguments.length; for (i=0; i<max; i++) this[i]=textlist.arguments[i]; } tl=new textlist ( " Merhaba", " Burasını değiştirerek yazınızı yazabilirsiniz", " Daktilo efektli yazı kodu", " Renkleri değiştirebilirsiniz", " background color, arka renk ", " color, yazı rengini değiştirir ", " font size, yazı boyutu ", " Hızı değiştirebilirsiniz ", " Kolaygelsin", " SAYGILAR...." ); var text_x=0; pos=0; var l=tl[0].length; function textticker() { document.form1.textfeld.value=tl[text_x].substring(0,pos)+"_"; if(pos++==l) { pos=0; setTimeout("textticker()",2000); text_x++; if(text_x==max) text_x=0; l=tl[text_x].length; } else setTimeout("textticker()",50); } function StartTexte() { textticker(); } // --> </script> </div> <p align="center" style="text-align: center"> <form name="form1" style="text-align: center"> <div align="center"> <input type="text" STYLE="border: none; background-color: #000000; color: #3DCB27; font-size: 16px; font-family: monospace;" size="72" name="textfeld" value="" readonly="readonly"> </div> </form> <div align="center"> </p> </div> </body>