i'm ConFuSed, BANnEr on top of entire page |
![]() ![]() |
i'm ConFuSed, BANnEr on top of entire page |
![]()
Post
#1
|
|
Member ![]() ![]() Group: Member Posts: 29 Joined: Jan 2004 Member No: 798 ![]() |
hey errione....okai i don't know if i'm making sense but maih friends have xangas that have words that move on the line that has the "x" button for exit and i wanted to know....how do you do that? thanx........
*jeL* |
|
|
*krnxswat* |
![]()
Post
#2
|
Guest ![]() |
Can we see their site? To exactly comprehend what you're talking about..
|
|
|
![]()
Post
#3
|
|
Member ![]() ![]() Group: Member Posts: 29 Joined: Jan 2004 Member No: 798 ![]() |
haha okay shure... mah friEnDs webpage ........yeah she also has stuff at the bottom of her webpage that moves......how can you do that at the top too?
|
|
|
*krnxswat* |
![]()
Post
#4
|
Guest ![]() |
Where is this "x" button to exit?
|
|
|
![]()
Post
#5
|
|
![]() Wants a BIG Robot ![]() ![]() ![]() Group: Member Posts: 51 Joined: Jan 2004 Member No: 712 ![]() |
LoL. She's talking about a moving page title. The 'X' she's talking about is the button to close a window in Windows.
![]() |
|
|
*krnxswat* |
![]()
Post
#6
|
Guest ![]() |
Ohhhhhhhhhhh. Haha
![]() I'm so silly. Anyways, let me steal the code from here. To have the title on the line where the "x" button is.. CODE <!-- begin code provided by createblog.com --> <script language="JavaScript"> document.title ="WRITE THE TITLE HERE" </script> <!-- end code provided by createblog.com --> And for the changing messages on the bottom of the browser.... CODE <!-- begin code provided by createblog.com --> <script language="JavaScript"> var current = 0 var x = 0 var speed = 50 var speed2 = 700 function initArray(n) { this.length = n; for (var i =1; i <= n; i++) { this[i] = ' ' } } typ = new initArray(200) typ[0]=" Message 1 " typ[1]=" Message 2 " typ[2]=" Message 3 " typ[3]=" Message 4 " typ[4]=" Message 5 " typ[5]=" Message 6 " typ[6]=" Message 7 " typ[7]=" Message 8 " typ[8]=" Message 9 " typ[9]=" Message 10" function typewrite() { var m = typ[current] window.status = m.substring(0, x++) + "<<--" if (x == m.length + 1) { x = 0 current++ if (current > typ.length - 1) { current = 0 } setTimeout("typewrite()", speed2) } else { setTimeout("typewrite()", speed) } } typewrite()//<script></script> <!-- end code provided by createblog.com --> You can add more, or delete them. |
|
|
![]()
Post
#7
|
|
![]() advanced newbie... S2 ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,504 Joined: Jan 2004 Member No: 752 ![]() |
i think she means browser marquee... ^_^ not the status bar marquee...
QUOTE that have words that move on the line that has the "x" button for exit (i think i might be wrong...) QUOTE <script> //title scroller - xanga.com/add_ons //set left placeholder below var left="_"; //set right placeholder below var right="_"; //set the scrolling message below var msg=" Welcome to my Xanga! "; //set the speed below. lower is faster var speed=100; //do not edit below this line function scroll_title() { document.title=left+msg+right; msg=msg.substring(1,msg.length)+msg.charAt(0); setTimeout("scroll_title()",speed); } scroll_title(); </script> credits to add_ons ![]() this one can only use one sentence thingy unless you alternate it (which i have no clue how to do) |
|
|
![]()
Post
#8
|
|
Member ![]() ![]() Group: Member Posts: 29 Joined: Jan 2004 Member No: 798 ![]() |
haha thankx yOu guyZ....if you want another example of what i'm talking about here's another one of maih friends links -Maih FrEnDs PaGe ...yeah at the top it has the words at the top move so yeah hahaha.......thankx again
*jeL* |
|
|
![]()
Post
#9
|
|
Member ![]() ![]() Group: Member Posts: 29 Joined: Jan 2004 Member No: 798 ![]() |
umm where do you put the code? haha
|
|
|
![]()
Post
#10
|
|
Member ![]() ![]() Group: Member Posts: 29 Joined: Jan 2004 Member No: 798 ![]() |
<!-- begin code provided by createblog.com -->
<script language="JavaScript"> var current = 0 var x = 0 var speed = 50 var speed2 = 700 function initArray(n) { this.length = n; for (var i =1; i <= n; i++) { this[i] = ' ' } } typ = new initArray(200) typ[0]=" Message 1 " typ[1]=" Message 2 " typ[2]=" Message 3 " typ[3]=" Message 4 " typ[4]=" Message 5 " typ[5]=" Message 6 " typ[6]=" Message 7 " typ[7]=" Message 8 " typ[8]=" Message 9 " typ[9]=" Message 10" function typewrite() { var m = typ[current] window.status = m.substring(0, x++) + "<<--" if (x == m.length + 1) { x = 0 current++ if (current > typ.length - 1) { current = 0 } setTimeout("typewrite()", speed2) } else { setTimeout("typewrite()", speed) } } typewrite()//<script></script> <!-- end code provided by createblog.com --> uh yeah this codes works but after my last message it stoops how do you make it repeat? thankx |
|
|
![]()
Post
#11
|
|
Member ![]() ![]() Group: Member Posts: 29 Joined: Jan 2004 Member No: 798 ![]() |
and oh yeah you know the arrows that move everytime there's a new message is there anything else other than that? like sumthing else othere than that arrow....
|
|
|
![]() ![]() |