我不是说只是出现和消失。我的意思是非常快的闪光,毫秒级的速度。有任何想法吗?
问问题
4728 次
3 回答
4
毫秒级的闪烁是不切实际的。典型显示器的标称屏幕刷新率通常在 50hz 或更低的范围内。即每 20 毫秒 1 次的闪光率……比“毫秒速度”慢一个数量级。
并且忽略那个“狡辩”,您将能够在库存 PC / OS 上获得 Java 应用程序,以便在接近屏幕刷新率的任何地方可靠地闪烁一些文本,而无需进行一些严重的低级图形工作......
使用 Swing 高级 API可靠地执行此操作可能很困难。您很可能需要深入到“画布”和翻转图像上的绘画位级别。
而且我认为您的用户不会欣赏/享受这种体验......
明亮的闪光灯和屏幕会给一些人带来严重的健康问题。所以要非常非常小心。
于 2013-02-20T01:34:21.447 回答
4
这是一个简单的例子。
import java.awt.AlphaComposite;
import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.Timer;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class Flashy {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException ex) {
} catch (InstantiationException ex) {
} catch (IllegalAccessException ex) {
} catch (UnsupportedLookAndFeelException ex) {
}
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(new BlinkPane());
frame.setSize(200, 200);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
protected static class BlinkPane extends JLabel {
private JLabel label;
private boolean on = true;
public BlinkPane() {
label = new JLabel("Hello");
setLayout(new GridBagLayout());
add(label);
Timer timer = new Timer(250, new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
on = !on;
repaint();
}
});
timer.setRepeats(true);
timer.setCoalesce(true);
timer.start();
}
@Override
public void paint(Graphics g) {
Graphics2D g2d = (Graphics2D) g.create();
if (!on) {
g2d.setComposite(AlphaComposite.SrcOver.derive(0f));
} else {
g2d.setComposite(AlphaComposite.SrcOver.derive(1f));
}
super.paint(g2d);
g2d.dispose();
}
}
}
如果你有癫痫病,请不要运行这个!
于 2013-02-20T01:36:39.163 回答
2
<blink><marquee>punch the monkey and win $20</marquee></blink>
我认为您还需要滚动功能来增加用户体验。
编辑:这可能只适用于 netscape navigator 和/或 IE 5。我忘记了哪些支持哪些标签。
于 2013-02-20T04:16:20.633 回答