⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e558. animating an array of images in an applet.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
This is the simplest applet to animate an array of images. In practice, you should use double-buffering (which this example does not use) to eliminate flickering. 
    import java.applet.*;
    import java.awt.*;
    
    public class AnimApplet extends Applet implements Runnable {
        Image[] images = new Image[2];
        int frame = 0;
        volatile Thread thread;
    
        public void init() {
            images[0] = getImage(getDocumentBase(), "http://hostname/image0.gif");
            images[1] = getImage(getDocumentBase(), "http://hostname/image1.gif");
        }
        public void start() {
            (thread = new Thread(this)).start();
        }
        public void stop() {
            thread = null;
        }
        public void paint(Graphics g) {
            g.drawImage(images[frame], 0, 0, this);
        }
        public void run() {
            int delay = 1000;    // 1 second
            try {
                while (thread == Thread.currentThread()) {
                    frame = (frame+1)%images.length;
                    repaint();
                    Thread.sleep(delay);
                }
            } catch (Exception e) {
            }
        }
    }

 Related Examples 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -