Guest User

Untitled

a guest
Jun 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(function() {
  3.  
  4. $('#slideshow ul').after('<ul id="nav">').cycle({
  5. fx: 'fade',
  6. speed: 'fast',
  7. timeout: 0,
  8. pager: '#slideshowNav',
  9.  
  10. // callback fn that creates a thumbnail to use as pager anchor
  11. pagerAnchorBuilder: function(idx, slide) {
  12. return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>';
  13. }
  14. });
  15.  
  16. });
  17.  
  18. </script>
Add Comment
Please, Sign In to add comment