Skip to content

Instantly share code, notes, and snippets.

@mcsheffrey
Created September 1, 2013 22:13
Show Gist options
  • Select an option

  • Save mcsheffrey/6407659 to your computer and use it in GitHub Desktop.

Select an option

Save mcsheffrey/6407659 to your computer and use it in GitHub Desktop.

Revisions

  1. mcsheffrey renamed this gist Sep 1, 2013. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. mcsheffrey created this gist Sep 1, 2013.
    30 changes: 30 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,30 @@
    carousel = function(){
    var config = {
    CSS:{
    classes:{
    current:'current',
    scrollContainer:'scroll'
    },
    IDs:{
    maincontainer:'carousel'
    }
    },
    labels:{
    previous:'back',
    next:'next',
    auto:'play'
    },
    settings:{
    amount:5,
    skin:'blue',
    autoplay:false
    },
    };
    function init(){
    };
    function scroll(){
    };
    function highlight(){
    };
    return {config:config,init:init}
    }();