u8g splash screen

So I've got my app almost all done, and I have a few K left in flash. I have a 128x64 pixel monochrome LCD attached. It would be neat to have some eye candy at startup.

Anyone have an example code snippet of a moving or fade in logo I can use as a go-by? A splash screen of sorts for u8glib?

I've never used this , yet...

use the following sequence in setup():

  // picture loop
  u8g.firstPage();  
  do {
    draw_splash_screen();
  } while( u8g.nextPage() );
  
  // show splash screen for a 2 seconds
  delay(2000);

Oliver