Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* ===== PROGRESS BAR ===== */
- $(window).on('scroll', function(){
- progress_bars();
- backToTop();
- });
- function progress_bars() {
- $(".progress .progress-bar:in-viewport").each(function() {
- if (!$(this).hasClass("animated")) {
- $(this).addClass("animated");
- $(this).width($(this).attr("data-width") + "%");
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement