| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mimradmin/.trash/wp-content.1/themes/woodmart-new/js/scripts/elements/ |
Upload File : |
/* global woodmart_settings */
(function($) {
$.each([
'frontend/element_ready/wd_counter.default'
], function(index, value) {
woodmartThemeModule.wdElementorAddAction(value, function() {
woodmartThemeModule.visibleElements();
});
});
woodmartThemeModule.counterShortcode = function(counter) {
if (counter.attr('data-state') === 'done' || counter.attr('data-state') === 'process') {
return;
}
counter.prop('Counter', counter.text()).animate({
Counter: counter.data('final')
}, {
duration: parseInt(woodmart_settings.animated_counter_speed),
easing : 'swing',
step : function(now) {
if (now >= counter.data('final')) {
counter.attr('data-state', 'done');
} else {
counter.attr('data-state', 'process');
}
counter.text(Math.ceil(now));
}
});
};
woodmartThemeModule.visibleElements = function() {
$('.woodmart-counter .counter-value, .wp-block-wd-animated-counter span').each(function() {
var $this = $(this);
$this.waypoint(function() {
woodmartThemeModule.counterShortcode($this);
}, {offset: '100%'});
});
};
$(document).ready(function() {
woodmartThemeModule.visibleElements();
});
})(jQuery);