Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 28th, 2012  |  syntax: PHP  |  size: 1.05 KB  |  hits: 28  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!-- SLIDER SETTINGS -->
  2.            <script type="text/javascript">
  3.                         $(window).load(function() {
  4.                                 $('#slider').nivoSlider({
  5.                                         effect:'random', //Specify sets like: 'fold,fade,sliceDown'
  6.                                         slices:15,
  7.                                         animSpeed:500,
  8.                                         pauseTime:3000,
  9.                                         startSlide:0, //Set starting Slide (0 index)
  10.                                         directionNav:true, //Next & Prev
  11.                                         directionNavHide:true, //Only show on hover
  12.                                         controlNav:true, //1,2,3...
  13.                                         controlNavThumbs:false, //Use thumbnails for Control Nav
  14.                                         controlNavThumbsFromRel:false, //Use image rel for thumbs
  15.                                         controlNavThumbsSearch: '.jpg', //Replace this with...
  16.                                         controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src
  17.                                         keyboardNav:true, //Use left & right arrows
  18.                                         pauseOnHover:true, //Stop animation while hovering
  19.                                         manualAdvance:false, //Force manual transitions
  20.                                         captionOpacity:0.8, //Universal caption opacity
  21.                                         beforeChange: function(){},
  22.                                         afterChange: function(){},
  23.                                         slideshowEnd: function(){} //Triggers after all slides have been shown
  24.                                 });
  25.                         });
  26.                         </script>