ForegroundColorAnimation foregroundColorAnimation = new ForegroundColorAnimation( lblGeil, Color.WHITE );
foregroundColorAnimation.setStartOffset( 11000 );
foregroundColorAnimation.setDuration( 2000 );
defaultAnimationExecutor.addAnimation( foregroundColorAnimation );
BackgroundColorRangeAnimation prepareColorRangeAnimation = new BackgroundColorRangeAnimation( contentPane, new Color( Color.HSBtoRGB( 0f, 1f, 1f ) ) );
prepareColorRangeAnimation.setStartOffset( 13000 );
prepareColorRangeAnimation.setDuration( 1000 );
defaultAnimationExecutor.addAnimation( prepareColorRangeAnimation );
BackgroundColorRangeAnimation backgroundColorRangeAnimation = new BackgroundColorRangeAnimation( contentPane, new Color( Color.HSBtoRGB( 0.99f, 1f, 1f ) ) );
backgroundColorRangeAnimation.setStartOffset( 14000 );
backgroundColorRangeAnimation.setDuration( 10000 );
defaultAnimationExecutor.addAnimation( backgroundColorRangeAnimation );
windowFadeAnimation = WindowFadeFactory.createWindowFadeAnimation( this, 0f );
windowFadeAnimation.setStartOffset( 16000 );
windowFadeAnimation.setDuration( 8000 );