| java.lang.Object com.jgoodies.animation.animations.BasicTextAnimations
BasicTextAnimations | final public class BasicTextAnimations (Code) | | Provides a text animation that shows an overlapping sequence of
texts using a bunch of different effects: color fade, scaling, glyph spacing.
author: Karsten Lentzsch version: $Revision: 1.1 $ See Also: BasicTextAnimation |
Method Summary | |
public static Animation | defaultFade(BasicTextLabel label1, BasicTextLabel label2, long singleDuration, long beginOffset, String separatedTexts, Color baseColor) Creates and answers the default color fade text sequence. | public static Animation | defaultScale(BasicTextLabel label1, BasicTextLabel label2, long singleDuration, long beginOffset, String separatedTexts, Color baseColor) Creates and answers the default scaling text sequence. | public static Animation | defaultSpace(BasicTextLabel label1, BasicTextLabel label2, long singleDuration, long beginOffset, String separatedTexts, Color baseColor) Creates and answers the default glyph spacing text sequence. |
defaultFade | public static Animation defaultFade(BasicTextLabel label1, BasicTextLabel label2, long singleDuration, long beginOffset, String separatedTexts, Color baseColor)(Code) | | Creates and answers the default color fade text sequence.
Parameters: label1 - a text label used to blend over Parameters: label2 - a second text label used to blend over Parameters: singleDuration - the duration of a single animation Parameters: beginOffset - an initial animation time offset Parameters: separatedTexts - a sequence of texts in a string separatedby the | character Parameters: baseColor - the base color for the fade a default fade animation |
defaultScale | public static Animation defaultScale(BasicTextLabel label1, BasicTextLabel label2, long singleDuration, long beginOffset, String separatedTexts, Color baseColor)(Code) | | Creates and answers the default scaling text sequence.
Parameters: label1 - a text label used to blend over Parameters: label2 - a second text label used to blend over Parameters: singleDuration - the duration of a single animation Parameters: beginOffset - an initial animation time offset Parameters: separatedTexts - a sequence of texts in a string separatedby the | character Parameters: baseColor - the base color for the fade a default scaling blend over animation |
defaultSpace | public static Animation defaultSpace(BasicTextLabel label1, BasicTextLabel label2, long singleDuration, long beginOffset, String separatedTexts, Color baseColor)(Code) | | Creates and answers the default glyph spacing text sequence.
Parameters: label1 - a text label used to blend over Parameters: label2 - a second text label used to blend over Parameters: singleDuration - the duration of a single animation Parameters: beginOffset - an initial animation time offset Parameters: separatedTexts - a sequence of texts in a string separatedby the | character Parameters: baseColor - the base color for the fade a default space blend over animation |
|
|