annotate slide/s6/js/jquery.slideshow.ready.js @ 28:04d0b9bac8f1

add file
author e155702
date Wed, 20 Feb 2019 11:49:20 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28
04d0b9bac8f1 add file
e155702
parents:
diff changeset
1
04d0b9bac8f1 add file
e155702
parents:
diff changeset
2 $(document).ready( function() {
04d0b9bac8f1 add file
e155702
parents:
diff changeset
3 Slideshow.init();
04d0b9bac8f1 add file
e155702
parents:
diff changeset
4
04d0b9bac8f1 add file
e155702
parents:
diff changeset
5 // Example 2: Start Off in Outline Mode
04d0b9bac8f1 add file
e155702
parents:
diff changeset
6 // Slideshow.init( { mode: 'outline' } );
04d0b9bac8f1 add file
e155702
parents:
diff changeset
7
04d0b9bac8f1 add file
e155702
parents:
diff changeset
8 // Example 3: Use Custom Transition
04d0b9bac8f1 add file
e155702
parents:
diff changeset
9 // Slideshow.transition = transitionScrollUp;
04d0b9bac8f1 add file
e155702
parents:
diff changeset
10 // Slideshow.init();
04d0b9bac8f1 add file
e155702
parents:
diff changeset
11
04d0b9bac8f1 add file
e155702
parents:
diff changeset
12 // Example 4: Start Off in Autoplay Mode with Custom Transition
04d0b9bac8f1 add file
e155702
parents:
diff changeset
13 // Slideshow.transition = transitionScrollUp;
04d0b9bac8f1 add file
e155702
parents:
diff changeset
14 // Slideshow.init( { mode: 'autoplay' } );
04d0b9bac8f1 add file
e155702
parents:
diff changeset
15 } );