MOON
Server: Apache
System: Linux server30c.hostingraja.org 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
User: seoprovi (1222)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: /home/seoprovi/transhipkartpackersandlogistics.com/js/tox-progress.js
var ToxProgressBar = function (element) {
    this.element = element;
    this.size = +element.dataset.size;
    this.thickness = +element.dataset.thickness;
    this.color = element.dataset.color;
    this.backgroundColor = element.dataset.background;
    this.progress = element.dataset.progress;
    this.speed = +element.dataset.speed;
};

ToxProgressBar.prototype.create = function () {
    var content = this.element.querySelector('.tox-progress-content');
    this.element.style.width = this.size + 'px';
    this.element.style.height = this.size + 'px';
    this.element.innerHTML =
        '<div style="width:' + this.size + 'px;height:' + this.size + 'px;">' +
        '   <div class="radial-outer" style="background: ' + this.color + '; width: ' + this.size + 'px; height: ' + this.size + 'px"></div>' +
        '   <div class="radial-mask-1" style="border-top-left-radius: ' + ((this.size / 2) + 2) + 'px; border-top-right-radius: ' + ((this.size / 2) + 2) + 'px; background-color: ' + this.backgroundColor + '; width: ' + (this.size + 2) + 'px; height: ' + ((this.size / 2) + 2) + 'px; top: -' + ((this.size) + 2) + 'px;left:-1px;"></div>' +
        '   <div class="radial-mask-2" style="border-top-left-radius: ' + ((this.size / 2) + 2) + 'px; border-top-right-radius: ' + ((this.size / 2) + 2) + 'px; background-color: ' + this.backgroundColor + '; width: ' + (this.size + 2) + 'px; height: ' + ((this.size / 2) + 2) + 'px; top: -' + (((this.size) + this.size / 2) + 4) + 'px;left:-1px;"></div>' +
        '   <div class="radial-mask-3" style="visibility: hidden; border-top-left-radius: ' + ((this.size / 2) + 2) + 'px; border-top-right-radius: ' + ((this.size / 2) + 2) + 'px; background-color: ' + this.color + '; width: ' + this.size + 'px; height: ' + (this.size / 2) + 'px;top: -' + ((this.size * 2) + 4) + 'px;"></div>' +
        '   <div class="radial-inner" style="background-color: ' + this.backgroundColor + '; width: ' + (this.size - (this.thickness * 2)) + 'px; height: ' + (this.size - (this.thickness * 2) + 2) + 'px; top: -' + ((this.size) * 2.5 - this.thickness + 6) + 'px; left: ' + this.thickness + 'px"></div>' +
        '</div>' +
        (content ? (
        '<div class="' + content.className + '" data-vcenter="' + content.dataset.vcenter + '" style="' + (content.dataset.vcenter === 'true' ? ('display: flex; align-items: center;') : '') + 'top: ' + -this.size + 'px;width:' + this.size + 'px;height:' + this.size + 'px;">' +
        (content ? content.innerHTML : '') +
        '</div>') : '');
};

ToxProgressBar.prototype.animate = function () {
    var element = this.element;
    var speed = this.speed;
    var progress = this.progress;

    if (progress > 50) {
        element.querySelector('.radial-mask-1').style.transition = 'transform ' + (speed / 2) + 'ms ease-in';
        element.querySelector('.radial-mask-2').style.transition = 'transform ' + (speed * ((progress - 50) / 100)) + 'ms ease-out';
    } else {
        element.querySelector('.radial-mask-1').style.transition = 'transform ' + (speed * (progress / 100)) + 'ms ease-in';
    }

    setTimeout(function () {
        if (progress > 50) {
            element.querySelector('.radial-mask-1').style.transform = 'rotate(270deg)';
            setTimeout(function () { // more then half round
                element.querySelector('.radial-mask-1').style.visibility = 'hidden';
                element.querySelector('.radial-mask-2').style.transform = 'rotate(' + (90 + (progress * 3.6)) + 'deg)';
                element.querySelector('.radial-mask-3').style.visibility = 'visible';
                if (+progress === 100) {
                    setTimeout(function () { // full, hide mask to prevent white stripes.
                        element.querySelector('.radial-mask-2').style.visibility = 'hidden';
                    }, speed / 2);
                }
            }, speed / 2);
        } else element.querySelector('.radial-mask-1').style.transform = 'rotate(' + (90 + (progress * 3.6)) + 'deg)';
    }, 50);
};

var ToxProgress = {
    toxProgressBars: [],
    init: function () {
        var toxProgressBars = this.toxProgressBars = [];
        var toxProgressElements = document.querySelectorAll('.tox-progress');

        [].forEach.call(toxProgressElements, function (element) {
            toxProgressBars.push(new ToxProgressBar(element));
        });
    },
    create: function () {
        this.init();
        var toxProgressBars = this.toxProgressBars;

        toxProgressBars.forEach(function (toxProgressBar) {
            toxProgressBar.create();
        });
    },
    animate: function () {
        var toxProgressBars = this.toxProgressBars;

        toxProgressBars.forEach(function (toxProgressBar) {
            toxProgressBar.animate();
        });
    }
};