Advertisement
Guest User

Untitled

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