/bklynflow

Coverflow-like behavior using MooTools

Primary LanguageJavaScriptOtherNOASSERTION

BklynFlow is a Coverflow-like class for MooTools.
Beau Sievers at the Brooklyn Museum, September 2010

Very simple usage example:

---

include('bklynflow.js');

var thumbs = [
  {
    action: function() {
      loadArtist('Evelyne_Axell');      // Replace with any desired action
    },
    image: 'thumbs/axell.jpg',
    caption: 'Evelyne Axell'
  },
  {
    action: function() {
      loadArtist('Pauline_Boty');
    },
    image: 'thumbs/boty.jpg',
    caption: 'Pauline Boty'
  },
  {
    action: function() {
      loadArtist('Vija_Celmins');
    },
    image: 'thumbs/celmins.jpg',
    caption: 'Vija Celmins'
  }
];

var myBklynFlow = new BklynFlow(thumbs, 'my-flow-element-id');

---