Question about window top & bottom |
![]() ![]() |
Question about window top & bottom |
Aug 12 2004, 01:55 PM
Post
#1
|
|
![]() oh sweet pestilence ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 2,251 Joined: Jun 2004 Member No: 22,876 |
How do i do that? HERE for example Like it says, L<3ve is in the air//ft. Nick 'n Jessica and on the bottom it says, Jammin 2 kelly clarkson>>for your love. But on the bottom, the letters capitalize when you move the mouse. What's the code for that? I have been looking for it forever!
|
|
|
|
Aug 12 2004, 03:08 PM
Post
#2
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,826 Joined: Jan 2004 Member No: 2,330 |
this is for the top:
CODE <!-- begin code provided by createblog.com --> <script language="JavaScript"> document.title=('TITLE HERE')</script> <!-- end code provided by createblog.com --> and this is for the bottom: CODE <!-- begin code provided by createblog.com -->
<script language="javascript"> // moving capitalization - by xanga.com/godofphotoshop var myString = "TEXT HERE"; var speed = 5; // lower = faster // do not edit below this line var change = 0; var iterations = 0; function revealText() { change++; if(change == speed) { change = 0; iterations++; var currentLetter = iterations % myString.length; window.status = myString.substr(0, currentLetter).toLowerCase() + myString.substr(currentLetter, 1).toUpperCase() + myString.substr(currentLetter + 1, myString.length - (currentLetter + 1)).toLowerCase(); return true; } } document.attachEvent("onmousemove", revealText); </script> <!-- end code provided by createblog.com --> |
|
|
|
Aug 12 2004, 03:14 PM
Post
#3
|
|
![]() Gablin ![]() ![]() ![]() Group: Member Posts: 36 Joined: Jul 2004 Member No: 29,963 |
There have been many threads about this topic already. Did you look through all of Xanga Scripts? If so, you must have looked too fast because it's there. If you haven't looked yet, I suggest you do so. Both codes (code for the Title bar, and the code for Status bar) are located on page four in Xanga Scripts.
|
|
|
|
![]() ![]() |