Advertisement
salmancreation

window load fucntion jquery

Aug 16th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     // progressbar
  2. $(window).scroll(function() {
  3.    var hT = $('.our_skill').offset().top,
  4.        hH = $('.our_skill').outerHeight(),
  5.        wH = $(window).height(),
  6.        wS = $(this).scrollTop();
  7.    if (wS > (hT+hH-wH)){
  8.        $(".progress-bar").addClass('active_test');
  9.        $(".progress-bar span.progresbar_left_text").animate({
  10.         opacity: '100'
  11.         }, 120000);
  12.    }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement