Advertisement
Guest User

Untitled

a guest
Apr 25th, 2013
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. jQuery(document).ready(function($){
  2.  
  3. var id = proSlideshowObject.id;
  4. var arrows = proSlideshowObject.arrows;
  5. var effect = proSlideshowObject.effect;
  6. var navigation = proSlideshowObject.navigation;
  7. var hoverpause = proSlideshowObject.hoverpause;
  8. var randomize = proSlideshowObject.randomize;
  9. var autoplay = proSlideshowObject.autoplay;
  10. var slidespeed = proSlideshowObject.slidespeed;
  11. var animationspeed = proSlideshowObject.animationspeed;
  12. var touch = proSlideshowObject.touch;
  13. var video = proSlideshowObject.video;
  14.  
  15. jQuery("#' + id + '").flexslider({
  16. animation : "" + effect + "",
  17. directionNav : + arrows +,
  18. controlsContainer : ".slide-container_" + id + "",
  19. controlNav : + navigation +,
  20. pauseOnHover : + hoverpause +,
  21. randomize : + randomize +,
  22. smoothHeight : true,
  23. useCSS : false,
  24. slideshow : + autoplay +,
  25. slideshowSpeed : + slidespeed +,
  26. animationSpeed : + animationspeed +,
  27. touch : + touch +,
  28. video : + video +
  29. });
  30. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement