هذا كود يخلي إسم الموقع متحرك في البار العلوي زي المنتدى ....
- الكود:
[color=#000000] </color>[/color]
[color=#000000]// *******************************************************************[/color]
[color=#000000]// script by drevil_nz, Michael Dillon, Christchurch New Zealand. [/color]
[color=#000000]// Permission granted to use this script provided this credit [/color]
[color=#000000]// remains intact. Visit my homepage www.chc.quik.co.nz/juggler/mikey.html[/color]
[color=#000000]// Script written for Internet Explorer 4.0+.[/color]
[color=#000000]// ******************************************************************* [/color]
[color=#000000] [/color]
[color=#000000]var message="مرحباً بكم في شبكة النادي الرياضي" //specifys the title[/color]
[color=#000000]var message=message+" " //gives a pause at the end,1 space=1 speed unit, here I used 10 spaces@150 each = 1.5seconds. [/color]
[color=#000000]i="0" //declares the variable and sets it to start at 0[/color]
[color=#000000]var temptitle="" //declares the variable and sets it to have no value yet.[/color]
[color=#000000]var speed="150" //the delay in milliseconds between letters[/color]
[color=#000000] [/color]
[color=#000000]function titler(){[/color]
[color=#000000]if (!document.all&&!document.getElementById)[/color]
[color=#000000]return[/color]
[color=#000000]document.title=temptitle+message.charAt(i) //sets the initial title[/color]
[color=#000000]temptitle=temptitle+message.charAt(i) //increases the title by one letter[/color]
[color=#000000]i++ //increments the counter[/color]
[color=#000000]if(i==message.length) //determines the end of the message[/color]
[color=#000000]{[/color]
[color=#000000]i="0" //resets the counter at the end of the message[/color]
[color=#000000]temptitle="" //resets the title to a blank value[/color]
[color=#000000]}[/color]
[color=#000000]setTimeout("titler()",speed) //Restarts. Remove line for no-repeat.[/color]
[color=#000000]}[/color]
[color=#000000] [/color]
[color=#000000]window.onload=titler[/color]
[color=#000000]</script> [/color]