Slideshow only (kSlideshow)

JavaScript

  1. $(document).ready(function() {
  2.         gallery = kSlideshow({
  3.                 wrapper: '#slideshow-only',
  4.                 url: 'files/gallery.json',
  5.                 autoPlay: false, //autoplayback is turned off
  6.                 enableTitle: false, //images titles is turned off
  7.                 startItem: 0
  8.         });
  9. });
  10.  

HTML

  1. <div id="slideshow-only">
  2.  
  3. </div>

CSS

  1. .kSlideshowWrapper, .kSlideshowItemDiv{
  2.         width: 400px;
  3.         height: 267px;
  4. }
  5. .kSlideshowItemDiv img{
  6.         z-index: 400;
  7. }
  8.