HEX
Server: LiteSpeed
System: Linux sg-cp4.cloudnetwork.vn 4.18.0-553.69.1.lve.el8.x86_64 #1 SMP Wed Aug 13 19:53:59 UTC 2025 x86_64
User: thu28850 (1134)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/thu28850/www/wp-content/themes/martfury/js/plugins/jquery.coundown.js
/**
 * jQuery Tabs plugin 1.0.0
 *
 * @author Drfuri
 */
(function($) {
	$.fn.mf_countdown = function() {
		return this.each(function() {
			var $this = $(this),
				diff = $this.data('expire');

			var updateClock = function(distance) {
				var days = Math.floor(distance / (60 * 60 * 24));
				var hours = Math.floor((distance % (60 * 60 * 24)) / (60 * 60));
				var minutes = Math.floor((distance % (60 * 60)) / (60));
				var seconds = Math.floor(distance % 60);

				$this.html(
					'<span class="days timer"><span class="digits">' + (days < 10 ? '0' : '') + days + '</span><span class="text">' + martfuryData.days + '</span></span>' +
					'<span class="divider">:</span>' +
					'<span class="hours timer"><span class="digits">' + (hours < 10 ? '0' : '') + hours + '</span><span class="text">' + martfuryData.hours + '</span></span>' +
					'<span class="divider">:</span>' +
					'<span class="minutes timer"><span class="digits">' + (minutes < 10 ? '0' : '') + minutes + '</span><span class="text">' + martfuryData.minutes + '</span></span>' +
					'<span class="divider">:</span>' +
					'<span class="seconds timer"><span class="digits">' + (seconds < 10 ? '0' : '') + seconds + '</span><span class="text">' + martfuryData.seconds + '</span></span>'
				);
			};

			updateClock(diff);

			var countdown = setInterval(function() {
				diff = diff - 1;

				updateClock(diff);

				if ( diff < 0 ) {
					clearInterval(countdown);
				}
			}, 1000);
		});
	};

	/* Init tabs */
	$(function() {
		$('.martfury-countdown').mf_countdown();
	});
})(jQuery);