OXIESEC PANEL
- Current Dir:
/
/
home
/
cubot
/
docroot
/
assets
/
js
/
plugins
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2022 11:10:46 AM
rwxr-xr-x
📄
circles-master.js
3.36 KB
08/14/2022 11:10:46 AM
rw-r--r--
📄
fancy-box.js
916 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
master-slider.js
512 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
masterslider.js
539 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
mouse-wheel.js
969 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
owl-carousel-rtl.js
1.8 KB
08/14/2022 11:10:46 AM
rw-r--r--
📄
owl-carousel.js
3.07 KB
08/14/2022 11:10:46 AM
rw-r--r--
📄
placeholder-IE-fixes.js
2.7 KB
08/14/2022 11:10:46 AM
rw-r--r--
📄
progress-bar.js
1.2 KB
08/14/2022 11:10:46 AM
rw-r--r--
📄
revolution-slider.js
1.13 KB
08/14/2022 11:10:46 AM
rw-r--r--
📄
stepWizard.js
1.45 KB
08/14/2022 11:10:46 AM
rw-r--r--
📄
style-switcher-rtl.js
932 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
style-switcher.js
929 bytes
08/14/2022 11:10:46 AM
rw-r--r--
Editing: progress-bar.js
Close
// Created by: Farukham: (https://github.com/farukham/Bootstrap-Animated-Progress-Bars) var ProgressBar = function () { return { //Progress Bar Horizontal initProgressBarHorizontal: function () { jQuery(document).ready(function () { jQuery('.progress').each(function () { jQuery(this).appear(function() { jQuery(this).animate({opacity:1,left:"0px"},800); var b = jQuery(this).find(".progress-bar").attr("data-width"); jQuery(this).find(".progress-bar").animate({ width: b + "%" }, 100, "linear"); }); }); }); }, //Progress Bar Vertical initProgressBarVertical: function () { jQuery(document).ready(function () { jQuery('.progress').each(function () { jQuery(this).appear(function() { jQuery(this).animate({opacity:1,left:"0px"},800); var b = jQuery(this).find(".progress-bar").attr("data-height"); jQuery(this).find(".progress-bar").animate({ height: b + "%" }, 100, "linear"); }); }); }); } }; }();