文件名称:又一个Java文字动画,文字跳动效果.rar
文件大小:10KB
文件格式:RAR
更新时间:2022-07-30 05:20:00
Java源码-网络相关
又一个Java文字动画,文字跳动效果 String message; //待显示的文本信息 Thread jumpThread; //实现跳动文字的线程 int fontHeight,speed,baseline; //字体高度,跳动速度和基线 Color textColor,bgColor; //文字颜色与背景颜色 Image jumpImage; //实现跳动的Image对象 Graphics jumpGraphics; //实现跳动的Graphics对象 boolean normal; //文字是否跳动的标志 Font font; //显示字体 FontMetrics fontMetric; //显示字体的FontMetrics对象 Color randomColors[]; //随机生成颜色 boolean randomColor; //是否是随机颜色 public void init(){ //初始化 raphics graphics = getGraphics(); //得到graphics对象 Dimension dim=getSize(); //得到尺寸 fontHeight=dim.height-10; //根据Applet尺寸设置文字高度 jumpImage=createImage(dim.width,dim.height); //创建Image对象 jumpGraphics = jumpImage.getGraphics(); //得到Graphics对象 message=getParameter("text"); //得到显示文字 if (message==null){ message="跳动的文字"; //设置默认文字 }
【文件预览】:
codesc.net
----Java抖动文字()
--------JumpText.html(233B)
--------31-1.bmp(163KB)
--------JumpTextApplet.class(4KB)
--------JumpTextApplet.java(6KB)