True text fading to any background image.
Download Zip
AUTHOR | "Maxim V. Kollegov (aka Virtual_Max@geocities.com)" obligatoty parameter. Without it, the applet won't work. |
BGCOLOR | Background color in hexadecimal format. Without any radix symbols. i.e. for red background use FF0000. |
BGIMAGE | Background image to be placed beside text. If image size is less than applet itself, then the image will be tiled |
TEXT0 ... TEXTn | Enumerated texts to be shown in applet. Text can start with font and link settings definition placed inside . (See description below) |
BGCOLOR and BGIMAGE parameters are optional. If you omit these parameters, their defaults will be used.
Example:
<PARAM NAME="TEXT0" VALUE=
"|FONT=TimesRoman SIZE=14 STYLE=3 LINK=index.html TARGET= self START=ROLL END=BLAST|
Your text message here.">
Text can start with Font and link definitions between two "|" symbols (It can't be placed anywhere else except at the beginning of the text value). As you can see in the above example the definitions consist of name/value pairs separated with space character. If you don't specify some parameters, then the previous message settings will be used. If no previous settings were defined, then the defaults will be used. Pay attention, if you do not ensure that the parameters are set for the first to last text, then the defaults will be used for the first time. The first message to the last message settings will be used in further cycles. Each parameter, in text and link definitions, is independent, so you can include definitions for those parameters which you would like to change. In the table below you will find the complete list of parameters.
FONT | One of the following. BE CAREFUL CASE SENSITIVE
parameter!
|
STYLE | Use the following values to set font style
|
SIZE | Font size (integer number) default size is 14. |
COLOR | Font color in hexadecimal format, (rrggbb) no radix symbol, please. For example use COLOR=FF0000 for red color. Default value=000000 |
LINK |
|
TARGET | One can use as windowname defined in FRAME tag, as well as one of the following:
|
START | Starting phase effect use one of the following:
|
END | Final phase effect. |
<APPLET CODE=luminous.class WIDTH=200 HEIGHT=50> <PARAM NAME="AUTHOR" VALUE="Maxim V. Kollegov (aka Virtual_Max@geocities.com)"> <PARAM NAME="BGCOLOR" VALUE="000080"> <PARAM NAME="BGIMAGE" VALUE="bg1.gif"> <PARAM NAME="TEXT0" VALUE="|FONT=TimesRoman COLOR=FFFF00 SIZE=16 STYLE=0 link=null START=FADE END=FADE| Virtual Max "> <PARAM NAME="TEXT1" VALUE="|COLOR=80FF00 SIZE=16 START=FADE END=FADE| Presents ">
....... and so on ........
<PARAM NAME="TEXT4" VALUE="That's all folks"> </APPLET>