With jQuery Sphere 3D you can...

HEADER

  • shadow on tile
  • stone tower
  • the monkey
  • tugboats, pt. 2
  • robyn's mug, pt. 1
  • loki, pt. 3
  • craig means business
  • holding on for dear life
  • street party
  • beautiful orchid
  • skullcap, pt. 1
  • photographer
  • butterflies, pt. 1
  • spin that wax, pt. 1
  • domo
  • sunset at 36000 feet
  • perspectotem
  • pier 1
  • peek-a-boo too
  • goofball
  • underfoot
  • sun, setting
  • self own
  • faux bricks
  • orange flowers
  • toothpicks, pt. 2
  • 8^
  • oh no.. not you again
  • depth of fabric
  • star
  • primary colors
  • e.m.p.
  • space needle
  • westin
  • tilted
  • metro
  • dandelions
  • pink flowers
  • white flower
  • lamp
  • alewife
  • my feet
  • chirp?
  • zebricks
  • canada geese
  • 1000 words
  • pollotronik all*stars gig poster
  • jen and carl

The code

$(function(){
  
  nav( 'Create Sphere 3D', function(){
    
    $('#photos').sphere3d({
      elems: 'li',
      scale: 0.95,
      reveal: 1
    });
    
  });
  
  nav( 'Destroy Sphere 3D', function(){
    
    $('#photos').sphere3d( false );
    
  });
    
  nav( 'Benchmark', function(){
    
    $('#photos').sphere3d({
      benchmark: true,
      elems: 'li',
      scale: 0.95,
      reveal: 1
    });
    
    $('#photos').sphere3d( false );
    
  });
  
});