KÓD:
<center>
<script type="text/javascript">
var bgcolour="#B5D325"; // Colore sfondo base testo se non serve lascia bgcolour=" ";
var hlcolour="#FF0000"; // Colore evidenziatore
var speed=250; // Velocità cambio colore, 1 secondo = 1000
var p_txt; window.onload=function() { if (document.getElementById) {
var phoni;
var phone=document.getElementById("phonein"); p_txt=phone.firstChild.nodeValue;
while (phone.childNodes.length) phone.removeChild(phone.childNodes[0]);
for (var i=0; i<p_txt.length; i++) {
phoni=document.createElement("div");
phoni.style.display="inline";
phoni.setAttribute("id", "phon"+i);
phoni.appendChild(document.createTextNode(p_txt.charAt(i)));
phone.appendChild(phoni);
}
phone_me((p_txt=p_txt.length)-1);
}
}
function phone_me(p_cnt) {
var p_tmp=document.getElementById("phon"+p_cnt); p_tmp.style.fontWeight="normal";
if (document.all) p_tmp.style.filter='';
p_tmp.style.backgroundColor=bgcolour;
p_cnt=++p_cnt%p_txt;
p_tmp=document.getElementById("phon"+p_cnt);
if (p_tmp.firstChild.nodeValue!=" ") {
p_tmp.style.fontWeight="bold";
if (document.all) p_tmp.style.filter="GLOW(strength=3, color=#"+bgcolour+")";
p_tmp.style.backgroundColor=hlcolour;
}
setTimeout("phone_me("+p_cnt+")", speed);
}
</script>
<span id="phonein">
Az oldal PORTÁLÉPÍTŐ ami tartalmazza
az alábbi linkeket:DESIGN,SCRIPT,HTML
kód,Segítség.2005.04.12.-én indult az
oldal azóta várom a segítségre szoruló
G-portálos.Ha bármi észrevételed van
irhatsz e-mailt(virag-78@gportal.hu )
vagy irhatsz a vendégkönybe,meg a
chat-be is.TANULJ,SZÉPÍTSD az
oldaladat de a legfontosabb hogy
közbe jól érezd magad!JégVirág
</span>
</center>