Yazi efekt kodlari

NuruAhsen

Sonsuz Temâþâ
Sayfaya Ucarak Giren Yazı
Asagıdaki kodu <İstediginiz Yazıyı Buraya Yazın> kısmını duzenleyip baska hicbir degisisklik yapmadan sablonunuza yapıstırın!

HTML:
<script>
//set style for NS4 to ''
if (document.layers)
var ns4def=''
</script>
<h1 id="flyin" style="position:relative;left:-400;font-style:italic" style="&{ns4def};"><font face="Arial">İstediginiz Yazıyı Buraya Yazın!</font></h1>
<script language="JavaScript1.2">
/*
Fly-in Header script (credit must stay enclosed)
By javascriptkit.com
For this and over 400+ JavaScripts,
Visit http://enigma1xx.piczo.com
*/
if (document.getElementById||document.all)
var crossheader=document.getElementById? document.getElementById("flyin").style : document.all.flyin.style
function animatein(){
if (parseInt(crossheader.left)<0)
crossheader.left=parseInt(crossheader.left)+20
else{
crossheader.left=0
crossheader.fontStyle="normal"
clearInterval(start)
}
}
if (document.getElementById||document.all)
start=setInterval("animatein()",50)
</script>
<p align="center"><font face="arial" size="-2"></font><br>
<font face="arial, helvetica" size="-2">
 

NuruAhsen

Sonsuz Temâþâ
Tek Tek Renk Degistiren Yazı Efekti

Yapmanız gereken sadece kodun en basında bulunan Yazınızı Buraya Yazınız yazısını degistirip baska bir degisiklik yapmadan komple kopyalayıp sablonunuza yapıstırmak olacak!


HTML:
<script type="text/javascript"><!-- 
/*
 ______________________________________________________

*/
text = "*** Yazınızı Buraya Yazınız ***"; // The text to scroll
color1 = "blue"; // original text color
color2 = "red"; // new character color
fontsize = "8"; // font size of text 
speed = 100; // how fast to rotate to next character 
// time is in milliseconds, (i.e. 1000 = 1 second)

i = 0;
if (navigator.appName == "Netscape") {
document.write("<layer id=a visibility=show></layer><br><br><br>");
}
else {
document.write("<div id=a></div>");
}
function changeCharColor()  {
if (navigator.appName == "Netscape") {
document.a.document.write("<center><font size =" + fontsize + "><font color=" + color1 + ">");
for (var j = 0; j < text.length; j++) {
if(j == i) {
document.a.document.write("<font color=" + color2 + ">" + text.charAt(i) + "</font>");
}
else {
document.a.document.write(text.charAt(j));
   }
}
document.a.document.write('</font></font></center>');
document.a.document.close();
}
if (navigator.appName == "Microsoft Internet Explorer") {
str = "<center><font size=" + fontsize + "><font color=" + color1 + ">";
for (var j = 0; j < text.length; j++) {
if( j == i) {
str += "<font color=" + color2 + ">" + text.charAt(i) + "</font>";
}
else {
str += text.charAt(j);
   }
}
str += "</font></font></center>";
a.innerHTML = str;
}
(i == text.length) ? i=0 : i++; // reset after going through all letters
}
setInterval("changeCharColor()", speed);
//--></script><font face="arial, helvetica" size="-2">


 

NuruAhsen

Sonsuz Temâþâ
Renkli Serit Üzerinde Kayan Renkli Yazı
Arkadaslar bütün kodlarda width yazısının yanındaki rakamı degistirerek kayan yazının alanı uzatabilir veya kısaltabilirsiniz


1.
HTML:
<div style="width:100%;padding:0;margin:0;border-style:solid;border-width:1;border-color:;">
<MARQUEE bgcolor="darkolivegreen" border="0" align="middle" scrollamount="2" scrolldelay="90" behavior="scroll" align="middle" width="100%" height="20" style="color: lightcyan; font-size: 14">
SELAM ARKADASLAR 
</MARQUEE>
</div>
2.
HTML:
<div style="width:100%;padding:0;margin:0;border-style:solid;border-width:1;border-color:;">
<MARQUEE bgcolor="red" border="0" align="middle" scrollamount="2" scrolldelay="90" behavior="scroll" align="middle" width="100%" height="30" style="color: lightcyan; font-size: 23">
SELAM ARKADASLAR Yazınızı buraya yazabilirsiniz!
</MARQUEE>
</div>

3.
HTML:
<div style="width:100%;padding:0;margin:0;border-style:solid;border-width:1;border-color:;">
<MARQUEE bgcolor="yellow" border="0" align="middle" scrollamount="5" scrolldelay="90" behavior="scroll" align="middle" width="100%" height="60" style="color: red; font-size: 47">
SELAM ARKADASLAR Yazınızı buraya yazabilirsiniz!
</MARQUEE>
</div>
4.
HTML:
<div style="width:100%;padding:0;margin:0;border-style:solid;border-width:1;border-color:;">
<MARQUEE bgcolor="aqua" border="0" align="middle" scrollamount="5" scrolldelay="90" behavior="scroll" align="middle" width="100%" height="60" style="color: red; font-size: 47">
Websayfama Hosgeldiniz!
</MARQUEE>
</div>
5.
HTML:
<div style="width:100%;padding:0;margin:0;border-style:solid;border-width:1;border-color:;">
<MARQUEE bgcolor="gold" border="0" align="middle" scrollamount="3" scrolldelay="90" behavior="scroll" align="middle" width="100%" height="30" style="color: blue; font-size: 23">
SELAM ARKADASLAR Yazınızı buraya yazabilirsiniz!
</MARQUEE>
</div>
6.
HTML:
<MARQUEE width="250" style="border:2px dotted deeppink">YAZINIZ BURAYA</MARQUEE>
 
Üst