Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 자바
- java
- available plugins
- Rocky Linux 9
- DBeaver
- javascript
- tomcat-users.xml
- bekjoon
- 백준 java jaekjoon JAVA
- 백준
- 백준 JAVA
- jenkins
- 1773번
- 환경번수
- 사용법
- subversion
- poll scm
- SVN
- linux
- rocky linux
- jsonb select
- ora-01476
- baekjoon
- jaekjoon java
- boj
- PostgreSQL
- 서버 접근
- 제수가 0입니다
- 메뉴얼
- putty
Archives
기록하는 개발자
[JavaScript/jQuery] 숫자 카운트 효과 본문
- 소스코드
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="text/javascript">
$(function () {
numCountComma();
numCount();
});
//숫자만
function numCount() {
$('.numCount').text($('input[id=num]').val()) //input에 입력한 값 가져오기(테스트용으로 추가)
$('.numCount').each(function () {
var t = $(this);
$({ Counter: 0 }).delay(200).animate({ Counter: t.text().replace(/,/g, "") }, {
duration: 1200,
easing: 'swing',
step: function () {
t.text(Math.ceil(this.Counter));
},
complete: function () {
t.text(Math.ceil(this.Counter));
}
});
});
}
//컴마 포함
function numCountComma() {
$('.numCountComma').text($('input[id=num]').val()) //input에 입력한 값 가져오기(테스트용으로 추가)
$('.numCountComma').each(function () {
var t = $(this);
$({ Counter: 0 }).delay(200).animate({ Counter: t.text().replace(/,/g, "") }, {
duration: 1200,
easing: 'swing',
step: function () {
t.text(numComma(Math.ceil(this.Counter)));
},
complete: function () {
t.text(numComma(Math.ceil(this.Counter)));
}
});
});
function numComma(x) { //컴마 정규식
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
}
function reset() { //클릭이벤트(테스트용으로 추가)
numCountComma();
numCount();
}
</script>
<input type="number" id="num" value="32131232131"></input><button type="button" onclick="reset()">button</button></br>
컴마 정규식 미포함 : <label class="numCount">32131232131</label></br>
컴마 정규식 포함 : <label class="numCountComma">32131232131</label>
- 실행결과
'웹 개발 > JavaScript' 카테고리의 다른 글
[JavaScript/jQuery] JSON.stringify - 입력한 json 데이터 정렬 (3) | 2023.08.31 |
---|---|
JSTL 변수에 session정보 할당하기 <c:set> (0) | 2022.10.06 |
Comments