【代码示例】Java实现的源代码,用于创建不规则窗体以及实现渐变滚动字幕的效果。在创建不规则窗体时,使用了Java 6u10版本JDK提供的方法,不过在未来的JDK Release版本中可能会有一些变化。渐变滚动字幕则是利用Java 2D渲染技术实现的。此代码示例是在NetBeans6.1环境下,使用Java 6 update 10开发的。日期为20080818。
【实例截图】
【核心代码】
.
├── SplashSample
│ ├── build
│ │ └── classes
│ │ └── mobi
│ │ └── chenwei
│ │ └── sample
│ │ └── splash
│ │ ├── Canvas$1.class
│ │ ├── Canvas$2.class
│ │ ├── Canvas$3.class
│ │ ├── Canvas.class
│ │ ├── DIVX.png
│ │ ├── SplashWindow$1.class
│ │ └── SplashWindow.class
│ ├── build-before-profiler.xml
│ ├── build.xml
│ ├── dist
│ │ ├── README.TXT
│ │ └── SplashSample.jar
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── private
│ │ │ ├── config.properties
│ │ │ ├── private.properties
│ │ │ ├── private.xml
│ │ │ └── profiler
│ │ │ └── configurations.xml
│ │ ├── profiler-build-impl.xml
│ │ ├── project.properties
│ │ └── project.xml
│ ├── src
│ │ └── mobi
│ │ └── chenwei
│ │ └── sample
│ │ └── splash
│ │ ├── Canvas.form
│ │ ├── Canvas.java
│ │ ├── DIVX.png
│ │ └── SplashWindow.java
│ └── test
└── 『Code』Java实现不规则窗体及渐变滚动字幕的源代码_SplashSample_01.zip
17 directories, 26 files
评论