Guest User

Untitled

a guest
Feb 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.69 KB | None | 0 0
  1.     jQuery('#circulo-slide-guia li:not(:eq(0), :eq(1))').hide();
  2.     jQuery('#circulo-slide-left').click(function() {
  3.         var pAtual = jQuery('#circulo-slide-guia li:visible').eq(0);
  4.         if ( pAtual.index() > 0 ) {
  5.             pAtual.next().fadeOut('fast', function() {
  6.                 pAtual.prev().show();
  7.             });
  8.         }
  9.     });
  10.  
  11.    
  12.     jQuery('#circulo-slide-right').click(function() {
  13.         var pAtual = jQuery('#circulo-slide-guia li:visible').eq(0);
  14.         if ( (pAtual.index() + 2) < jQuery('#circulo-slide-guia li').length ) {
  15.             pAtual.fadeOut('fast', function() {
  16.                 pAtual.next().next().show();
  17.             });
  18.          }
  19.     });
Add Comment
Please, Sign In to add comment