[jQuery] count up 본문

code/Javascript

[jQuery] count up

남우p 2022. 12. 1. 17:08

count 숫자가 커지는 애니메이션

$('선택자').prop('counter',0).animate({
	counter : 12982372958
 },{
 	duration:1000,
	easing:'swing',
	step: function(now){
		now = Number(Math.ceil(now)).toLocaleString('en');
        $(this).text(now);
	}
})

 

Comments