Guest User

Untitled

a guest
Mar 22nd, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Carousel.prototype.go_to = function( index, currentIndex )
  2. {
  3. if (currentIndex != index) {
  4.  
  5. index = index%this.count;
  6. if (index < 0)
  7. index = index + this.count;
  8.  
  9. this.$.faicha[currentIndex].classList.remove('ativo');
  10. this.$.faicha[index].classList.add('ativo');
  11.  
  12. this.$.musica[0].setAttribute('src', 'som/' + index + '.mp3');
  13.  
  14. /*Aqui abaixo minha tentativa*/
  15. this.$.nomedamusica[0].clone().appendTo(".nomedamusicaaqui");
  16.  
  17. this.changeMusic();
  18. this.index = index;
  19. }
Add Comment
Please, Sign In to add comment