Guest User

Untitled

a guest
Jan 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. jQuery(function() {
  2. $(".progress-bars .progress--bar").css("width", function(){
  3. return $(this).attr("data-length") + "%";
  4. });
  5. });
  6.  
  7. $(window).scroll(function() {
  8. var wrapperTop = $('.progress-wrapper).offset().top;
  9. var windowBot = $(this).scrollTop() + $(this).height();
  10. if (windowBot > wrapperTop){
  11. //Ваша анимация
  12. $(this).off('scroll');
  13. }
  14. });
Add Comment
Please, Sign In to add comment