Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $(window).load(function() {
  2. // The slider being synced must be initialized first
  3. $('#carousel').flexslider({
  4. animation: "slide",
  5. controlNav: false,
  6. animationLoop: false,
  7. slideshow: false,
  8. itemWidth: 210,
  9. itemMargin: 5,
  10. asNavFor: '#slider'
  11. });
  12.  
  13. $('#slider').flexslider({
  14. animation: "slide",
  15. controlNav: false,
  16. animationLoop: false,
  17. slideshow: false,
  18. sync: "#carousel"
  19. });
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement