Java Applet 启动时默认会显示一个带有 Java Logo 的动画,我们可以通过修改 image 属性使用自己的动画替代它。
<APPLET ...> <PARAM name="image" value="my_image.gif"> </APPLET>
Applet还提供另外几个属性用来作为动画的附加描述:
centerimage - 动画居中显示
boxmessage - 在浏览器状态栏添加消息描述
boxbgcolor - Applet容器背景色
boxfgcolor - Applet容器前景色
boxborder - 为Applet容器增加1像素款的边框
更多详情可以参阅《Special Applet Attributes 》