티스토리 뷰
countup.js 같은 숫자 카운트 효과 순수 제이쿼리로 구현하기
$('.num').each(function () {
var $this = $(this)
var regex = /[^0-9]/g;
var result = $this.text().replace(regex, "");
$({
countNum: 0
}).animate({
countNum: result
}, {
duration: 2000,
easing: 'linear',
step: function () {
$this.text(Math.floor(this.countNum).toString()
.replace(/\B(?<!\.\d*)(?=(\d{3})+(?!\d))/g, ","));
},
complete: function () {
$this.text((this.countNum).toString()
.replace(/\B(?<!\.\d*)(?=(\d{3})+(?!\d))/g, ","));
}
});
});
'WebPublisher > JavaScript & jQuery' 카테고리의 다른 글
[javaScript] 카카오톡으로 링크 공유하기 (0) | 2023.11.07 |
---|---|
[script] 자바스크립트 현재 url 복사하기 (0) | 2023.11.07 |
[fullpage.js] fullpage.js 2.9.7 (0) | 2023.11.04 |
[jQuery] 하나의 요소에 여러 이벤트 바인딩 (0) | 2023.11.02 |
[jQuery] hover 시 이미지 전환 (0) | 2023.11.02 |
공지사항