view js/jquery.slideshow.ready.js @ 7:8fd9385f952b

add js
author tatsuki
date Wed, 24 Jun 2015 15:21:19 +0900
parents
children
line wrap: on
line source


$(document).ready( function() {
  Slideshow.init();
    
  // Example 2: Start Off in Outline Mode
  // Slideshow.init( { mode: 'outline' } );
    
  // Example 3: Use Custom Transition
  // Slideshow.transition = transitionScrollUp;
  // Slideshow.init();

  // Example 4: Start Off in Autoplay Mode with Custom Transition
  // Slideshow.transition = transitionScrollUp;
  // Slideshow.init( { mode: 'autoplay' } );
} );