That is a cool effect.
From what I can tell, the website uses a technique similar to the
JQuery plug-in: Parallax. You basically create your images and the plug-in allows you to scroll them on separate planes, at different speeds, giving you a nice depth effect.
JQuery plug-in: Parallax - Allows animation of simple parallax animations by animating the background-position of <div> elements.
Usage:
jQuery("#header").parallax("create");
jQuery(".scene-1 .slice-1").parallaxSlice("create", {speed: 5});
jQuery(".scene-1 .slice-2").parallaxSlice("create", {speed: 3});
jQuery(".scene-1 .slice-3").parallaxSlice("create", {speed: 1});
This site looks like a good resource with some basic demos of the technique:
jonraash.com.
Here's another:
jParallax.
Cool header using jParallax on
this page.
The Hobo Lobo website calls this script:
parallaxer.js, which looks to contain lots of code to get the left<-->right scrolling synced and smoothed up just right.
It shouldn't be too difficult to build a webpage template where you could just drop in image frames for a scrolling comic strip.
This is an excellent example of programming and graphics design coming together to create dynamic art.