$('.box_counter').each(function() {
$(this).prop('counter',0).animate({
counter:$(this).text()
},{
duration: 3000,
easing: 'swing',
step:function(now) {
$(this).text(Math.ceil(now));
}
});
});