通过Graphics对象来实现动画效果

通过Graphics对象来实现动画效果

原创不易,转载请注明出处:通过Graphics对象来实现动画效果

package com.zuidaima.animate;

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Insets;
import java.util.Timer;
import java.util.TimerTask;

import javax.swing.JFrame;

public class Animate extends JFrame {

	private static int DELAY = 100;

	Insets insets;

	Color colors[] = { Color.RED, Color.ORANGE, Color.YELLOW, Color.GREEN,
			Color.BLUE, Color.MAGENTA };

	public void paint(Graphics g) {
		super.paint(g);
		if (insets == null) {
			insets = getInsets();
		}
		// Calculate each time in case of resize
		int x = insets.left;
		int y = insets.top;
		int width = getWidth() - insets.left - insets.right;
		int height = getHeight() - insets.top - insets.bottom;
		int start = 0;
		int steps = colors.length;
		int stepSize = 360 / steps;
		synchronized (colors) {
			for (int i = 0; i < steps; i++) {
				g.setColor(colors[i]);
				g.fillArc(x, y, width, height, start, stepSize);
				start += stepSize;
			}
		}
	}

	public void go() {
		TimerTask task = new TimerTask() {
			public void run() {
				Color c = colors[0];
				synchronized (colors) {
					System.arraycopy(colors, 1, colors, 0, colors.length - 1);
					colors[colors.length - 1] = c;
				}
				repaint();
			}
		};
		Timer timer = new Timer();
		timer.schedule(task, 0, DELAY);
	}

	public static void main(String args[]) {
		Animate f = new Animate();
		f.setSize(200, 200);
		f.show();
		f.go();
	}
}

	    			
完整代码下载地址: http://www.zuidaima.com/share/1550463399660544.htm

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值