JTextAreaをキャプションとして画像上にスライドイン
Total: 7861
, Today: 1
, Yesterday: 0
Posted by aterai at
Last-modified:
概要
画像の上にJTextArea
をスライドインアニメーションで表示します。
Screenshot
Advertisement
サンプルコード
private int delay = 4;
private int count = 0;
@Override public void mouseEntered(MouseEvent e) {
if (animator != null && animator.isRunning() || yy == textArea.getPreferredSize().height) {
return;
}
double h = (double) textArea.getPreferredSize().height;
animator = new Timer(delay, new ActionListener() {
@Override public void actionPerformed(ActionEvent e) {
double a = easeInOut(++count / h);
yy = (int) (.5 + a * h);
textArea.setBackground(new Color(0f, 0f, 0f, (float) (.6 * a)));
if (yy >= textArea.getPreferredSize().height) {
yy = textArea.getPreferredSize().height;
animator.stop();
}
revalidate();
repaint();
}
});
animator.start();
}
@Override public void mouseExited(MouseEvent e) {
if (animator != null && animator.isRunning() ||
contains(e.getPoint()) && yy == textArea.getPreferredSize().height) return;
double h = (double) textArea.getPreferredSize().height;
animator = new Timer(delay, new ActionListener() {
@Override public void actionPerformed(ActionEvent e) {
double a = easeInOut(--count / h);
yy = (int) (.5 + a * h);
textArea.setBackground(new Color(0f, 0f, 0f, (float) (.6 * a)));
if (yy <= 0) {
yy = 0;
animator.stop();
}
revalidate();
repaint();
}
});
animator.start();
}
// @see Math: EaseIn EaseOut, EaseInOut and Beziér Curves | Anima Entertainment GmbH
// http://www.anima-entertainment.de/math-easein-easeout-easeinout-and-bezier-curves
public double easeInOut(double t) {
// range: 0.0 <= t <= 1.0
if (t < .5) {
return .5 * Math.pow(t * 2d, 3d);
} else {
return .5 * (Math.pow(t * 2d - 2d, 3d) + 2d);
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JLabel
に画像を表示してその内部にマウスカーソルが入った場合JTextArea
がキャプションとしてease-in
, ease-out
でスライドインするよう設定しています。
OverlayLayout#layoutContainer
内でJTextArea
のy
座標を変更してアニメーションEaseInOut
の計算は、Math: EaseIn EaseOut, EaseInOut and Beziér Curves | Anima Entertainment GmbHを参考- マウスカーソルが
JLabel
(画像)内にあってもそこにJTextArea
がスライドインした場合、新たにmouseExited
イベントが発生するので注意が必要JTextArea#contains(int x, int y)
が常にfalse
を返すようにすれば上記の場合でもmouseExited
イベントなどは発生しないがJTextArea
内の文字列が選択できなくなるので、このサンプルではJTextArea
にマウスイベントを親へ素通しするリスナーを追加している
JTextArea
の背景色はsetOpaque(false)
にして描画せず、別途JTextArea#paintComponent(...)
をオーバーライドしてアルファ成分をEaseInOut
した色で全体を塗りつぶしている
- 累乗を
Math.pow(...)
の代わりにバイナリ法で実行する場合のメモ
public static double intpow(double x, int n) {
double aux = 1d;
if (n < 0) {
throw new IllegalArgumentException("n must be a positive integer");
}
for (; n > 0; x *= x, n >>>= 1) {
if ((n & 1) != 0) {
aux *= x;
}
}
return aux;
}
参考リンク
Math: EaseIn EaseOut, EaseInOut and Beziér Curves | Anima Entertainment GmbH- Slide In Image Captions | CSS-Tricks
- 指数関数を使ったお手軽イーズ・アウト - Radium Software
- Soft maximum 関数 - Radium Software
- イーズイン/アウトいろいろ - wonderfl build flash online
- 本の虫: なんでGCCはa*a*a*a*a*a を (a*a*a)*(a*a*a) に最適化できないの?っと