Credit Roll
The Credit Roll Java Applet is a
smooth scrolling banner that fades text in and out. A Java Applet consists of 2
parts - the applet itself ( the class file ) and the HTML parameters. The class file
needs to be stored on your website and is downloaded when users visit the page. The
parameters in your HTML code specify among other things the size of the banner and the
message itself.
- CreditRoll.class - Click here
to save this file and place it in your website. Then, copy and paste the following
code into your HTML. Values in red can be modified as you see fit. Experiment, and
see what adjustments suit you best.
<applet code="CreditRoll.class" width=300 height=100>
<param name=BGCOLOR value="FFFFFF">
<param name=TEXTCOLOR value="000000">
<param name=FADEZONE value="20">
<param name=TEXT1 value="Using Java Applets">
<param name=TEXT2 value="">
<param name=TEXT3 value="is a lot easier than">
<param name=TEXT4 value="">
<param name=TEXT5 value="programming them!.">
<param name=TEXT6 value="">
<param name=TEXT7 value="With the correct class file">
<param name=TEXT8 value="">
<param name=TEXT9 value="and a few HTML modifications...">
<param name=TEXT10 value="">
<param name=TEXT11 value="you can create this banner on your
site.">
<param name=URL value="http://www.95net.com">
<param name=REPEAT value="yes">
<param name=SPEED value="60">
<param name=VSPACE value="3">
<param name=FONTSIZE value="14">
<p>Message for browsers which do not support Java Applets or have it turned
off</p>
</applet>
Back to Web Tips |