| Forums > Tips & Tricks > "how to make the title move?" (2 replies)
|
|
|
|
|
| |
|
| |
|
| |
here's the script to be placed after :
words in brackets without space.
var repeat=1 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1
var title=document.title
var leng=title.length
var start=1
function titlemove() {
titl=title.substring(start, leng) + title.substring(0, start)
document.title=titl
start++
if (start==leng+1) {
start=0
if (repeat==0)
return
}
setTimeout("titlemove()",140)
}
if (document.title)
titlemove()
|
| |
| |
|
| |
javascript 
there are lots of styles though.
www.freewebs.com/simplicityTEARS
|
| Subscribe To This Thread: RSS 2.0 or Atom (?) |
| This thread has been locked, and no new replies can be posted. |