Project upload

This commit is contained in:
2022-04-24 03:02:39 -05:00
parent 92c64c30fe
commit c2ce33c3fb
71 changed files with 20006 additions and 0 deletions

35
js/components/progress-bar.js Executable file
View File

@@ -0,0 +1,35 @@
// Created by: Farukham: (https://github.com/farukham/Bootstrap-Animated-Progress-Bars)
// Progress Bar
var ProgressBar = function() {
"use strict";
// Handle Progress Bar Horizontal
var handleProgressBars = function() {
$(document).ready(function() {
$('.progress').each(function() {
$(this).appear(function() {
$(this).animate({
opacity: 1,
left: "0px"
}, 800);
var w = $(this).find(".progress-bar").attr("data-width");
var h = $(this).find(".progress-bar").attr("data-height");
$(this).find(".progress-bar").animate({
width: w + "%",
height: h + "%"
}, 100, "linear");
});
});
});
}
return {
init: function() {
handleProgressBars(); // initial setup for progressbars
}
}
}();
$(document).ready(function() {
ProgressBar.init();
});