구글링으로 찾은 예제를 조금 수정하였다.
다음에 재활용하기 위해 function 으로 만들어 보았다.
// 숫자 자동증가
// ex) autoIncrementVal( obj, val, durationVal );
// autoIncrementVal( "#testVal", 95, 2500 );
var autoIncrementVal = function(obj, val, durationVal)
{
$({someValue: 0}).animate({someValue: val}, {
duration: durationVal,
easing:'swing', // can be anything
step: function() { // called on every step
// Update the element's text with rounded-up value:
$(obj).text(Math.ceil(this.someValue));
}
});
}
'JavaScript&Platform > jQuery' 카테고리의 다른 글
[jQuery] Ajax Call pattern 호출 패턴 (0) | 2016.05.12 |
---|---|
[jQuery] table row 홀수, 짝수 배경색 지정하기 (0) | 2014.12.12 |
[jQuery] jquery ajax (0) | 2013.04.08 |
[jQuery]브라우저 리사이즈 시 이미지 자동 리사이즈... (0) | 2013.01.18 |
[jQuery] 버튼 + 이미지쇼 (0) | 2013.01.17 |