View Full Version : How Do U Make A Moving Title?


KoOkAi_07
01-30-2005, 07:41 AM
i have no idea what they're called. hehe. i want to my site to have a moving title rather than just a plain one. what's the scripts? thankx. :)

KoOkAi_07
01-30-2005, 08:07 AM
it's like this one. click this so you can see the moving title.

http://calibeibi.blogspot.com

thankx!

horse*chica
01-30-2005, 08:14 AM
I viewed the source and it seems that this is in the <head></head> tags:
<SCRIPT>
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()
</SCRIPT>

KoOkAi_07
01-30-2005, 09:02 AM
I viewed the source and it seems that this is in the <head></head> tags:
<SCRIPT>
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()
</SCRIPT>

where will i place my text? :idea:

MaGiCSuN
01-30-2005, 12:04 PM
I viewed the source and it seems that this is in the <head></head> tags:

horse*chica already gives you the answer right there :)

Love,
Mirna

kiwee
01-30-2005, 12:08 PM
you could try

<marquee>TITLE</marquee>

(i don't know if it is spelt right or not though)
but by title do you mean <title> ?


never mind
mod, please remove this post