Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 31st, 2012  |  syntax: None  |  size: 0.52 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. emile.js stop animation before start another
  2. this.showItem = function(n) {
  3. this.articlesElms[this.currentItem].style.zIndex = '2';
  4. emile(this.articlesElms[this.currentItem].id, 'opacity:0', {duration: 512});
  5.  
  6. removeClass(this.thumbnailsElms[this.currentItem], this.options.activeClassName);
  7. this.currentItem = n;
  8.  
  9. this.articlesElms[this.currentItem].style.zIndex = '20';
  10. emile(this.articlesElms[this.currentItem].id, 'opacity:1', {duration: 512});
  11.  
  12. addClass(this.thumbnailsElms[this.currentItem], this.options.activeClassName);
  13. }