Domain: amberpublishers.in
Server Adress: 86.38.243.169

privdayz.com

/home/u866425823/domains/sugam.kmclu.ac.in/public_html/js/
Dosya Yükle :
Current File : /home/u866425823/domains/sugam.kmclu.ac.in/public_html/js/countdowntimer.js

$.fn.setCountDownTimer = function (param) {
    this.html('<label class="countdownText" style="float:left;margin-right:5px;">' + param.countDownText + '</label>' +
        '<div id="countdown" style="float:left;">' +
        '<strong>' +
        '<span id="minutes" style="float:left"></span>' +
        '<span style="float:left;margin:0 2px"> : </span>' +
        '<span id="seconds" style="float:left"></span>' +
        '</strong>' +
        '</div>' +
        '<div id="aftercount" style="display:none">' + param.afterCountText + '</div>');
    var remTime = param.time.split(":"),
        sTime = new Date().getTime(),
        countDown = (remTime[01] * 60) + parseInt(remTime[02]),
        minutesSel = $("#minutes"),
        secondsSel = $("#seconds"),
        afterCountSel = $("#aftercount"),
        countDownSel = $("#countdown"),
        countDownTextSel = $('.countdownText');

    var timer = setInterval(function () {
        var cTime = new Date().getTime(),
            diff = cTime - sTime,
            seconds = countDown - Math.floor(diff / 1000);

        if (seconds >= 0) {
            var minutes = Math.floor(seconds / 60);
            seconds -= minutes * 60;
            minutesSel.text(minutes < 10 ? "0" + minutes : minutes);
            secondsSel.text(seconds < 10 ? "0" + seconds : seconds);
        } else {
            countDownSel.hide();
            countDownTextSel.hide();
            afterCountSel.show();
            clearInterval(timer);
        }
    }, 500);
}

coded by Privdayz.com - Visit https://privdayz.com/ for more php shells.