Super Scroller

Kumar Appaiah


This text scrolling applet is simple to use. See the source, if you want to.
Clicking on it stops animation. Clicking again resumes it.
The "param" tags can be used to specify the following attributes:
The "style" parameter can take the values "b" for bold, "i" for italic and "bi"/"ib" for bold italic. The "delay" parameter sets the delay for the scrolling animation.
Text:
The parameter names are text1, text2, text3 etc. upto text15. The important feature is that in the beginning of the value, you can specify the way the text should move in curly braces. Here are some examples:

<param name="text1" value="{lr}This text moves from left to right!">
This causes the text to scroll from left to right.

<param name="text4" value="{lb}Right and back!">
This causes the text to move from the left, stop in the middle, and wait for 2000ms before going back in.

<param name="text1" value="{lc50}Break and continue!">
This causes the text to stop when it is in the middle of the screen, wait for 50ms and then continue.

The full list of commands which can be put only one per curly brace, and only one curly brace pair per param tag is:
Click here to view the source.

Back to the home page...