function changelinkcolor(){ for (i=0; i< flashlinks.length; i ){ var flashtype=********.getElementById? flashlinks[i].getAttribute(\"flashtype\")*1 : flashlinks[i].flashtype*1 var flashcolor=********.getElementById? flashlinks[i].getAttribute(\"flashcolor\") : flashlinks[i].flashcolor if (flashtype==0){ if (flashlinks[i].style.color!=flashcolor) flashlinks[i].style.color=flashcolor else flashlinks[i].style.color='red' // من هنا يمكنك وضع لون للتأثير على النص } else if (flashtype==1){ if (flashlinks[i].style.backgroundColor!=flashcolor) flashlinks[i].style.backgroundColor=flashcolor else flashlinks[i].style.backgroundColor='' // من هنا يمكنك وضع خلفية للنص ومتغيرة ايضاً } } }
function init(){ var i=0 if *****.all){ while (eval(\"********.all.flashlink\" i)!=null){ flashlinks[i]= eval(\"********.all.flashlink\" i) i } } else if *****.getElementById){ while *****.getElementById(\"flashlink\" i)!=null){ flashlinks[i]= ********.getElementById(\"flashlink\" i) i } } setInterval(\"changelinkcolor()\", 1000) // من هنا يمكنك التحكم بسرعة التأثير }
if (window.addEventListener) window.addEventListener(\"load\", init, false) else if (window.attachEvent) window.attachEvent(\"onload\", init) else if *****.all) window.onload=init