Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $(window).scroll(function() {
  2. if ($('#skills').hasClass('active')){
  3. jQuery('.skillbar').each(function(){
  4. jQuery(this).find('.skillbar-bar').animate({
  5. width:jQuery(this).attr('data-percent')
  6. },2000);
  7. });
  8. }else{
  9. jQuery('.skillbar').each(function(){
  10. jQuery(this).find('.skillbar-bar').animate({
  11. width:'0px'
  12. },2000);
  13. });
  14. }
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement