write slide




JavaScript Source Code 3000: Scrolls: Write And Slide


































Write And Slide








This again is a very simple scroll. It keeps adding letters one by one across the status bar until the entire message is written out. Then, it quickly scrolls the entire to the left, until it is disappears from the status bar. Then the whole process starts again... Just look at the statusbar to see what I mean. Not very spectacular, but nice...










JavaScript Source Code 3000: Scrolls: Write And Slide
Simply click inside the window below, use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a new file in your text editor (such as NotePad or SimpleText) and save (Control-s or Apple-s). The script is yours!




    





<!-- TWO STEPS TO INSTALL WRITE AND SLIDE:

1. Paste the coding into the HEAD of your HTML document
2. Copy the onLoad event handler into the BODY tag -->

<!-- STEP ONE: Copy this code into the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<! >
<! >

<!-- Begin
var Message="Yet another simple scroll from TJS! You could have done it!!";
var place=1;
function scrollIn() {
window.status=Message.substring(0, place);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollOut()",300);
} else {
place++;
window.setTimeout("scrollIn()",50);
}
}
function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollIn()", 100);
} else {
place++;
window.setTimeout("scrollOut()", 50);
}
}
// End -->
</SCRIPT>

<!-- STEP TWO: Add this onLoad event handler into the BODY tag -->

<BODY onLoad="scrollIn()">



<!-- Script Size: 1.09 KB -->











Wyszukiwarka

Podobne podstrony:
function printer write
write
function stream set write buffer
Barry Manilow I m Gonna Sit Right Down And Write Me A Letter
Write the Derived Creation Routine
Vehicle Tax Write offs
Nokia 3600 Slide Instrukcja Obsługi PL
write out number
Jims G0602 Cross Slide Upgrade
Cabinet Slide out kitchen bin
Tibetan Calligraphy How to write the Tibetan dbu can script
Goo Goo Dolls Slide

więcej podobnych podstron