Advertisement
salmancreation

PROGRESS BAR

Oct 28th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* ===== PROGRESS BAR ===== */
  2.     $(window).on('scroll', function(){
  3.             progress_bars();
  4.             backToTop();
  5.     });
  6.  
  7.    
  8.     function progress_bars() {
  9.         $(".progress .progress-bar:in-viewport").each(function() {
  10.             if (!$(this).hasClass("animated")) {
  11.                 $(this).addClass("animated");
  12.                 $(this).width($(this).attr("data-width") + "%");
  13.             }
  14.            
  15.         });
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement