JavaScript [jQuery] 지정된 숫자까지 카운트업, 숫자애니메이션
페이지 정보
본문
<script src="http://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script>
<!-- jquery.counterup.min.js 다운로드받기 https://github.com/bfintal/Counter-Up -->
<script src="jquery.counterup.min.js"></script>
<span class="counter" style="display: inline-block;">123456</span>
<script>
jQuery(document).ready(function( $ ) {
$('.counter').counterUp({
delay: 10,
time: 1000
});
});
</script>
데모페이지 : http://bfintal.github.io/Counter-Up/demo/demo.html
참고자료
https://github.com/bfintal/Counter-Up
http://www.blueb.co.kr/?c=1/7&uid=3896
http://imivory.tistory.com/1
<!-- jquery.counterup.min.js 다운로드받기 https://github.com/bfintal/Counter-Up -->
<script src="jquery.counterup.min.js"></script>
<span class="counter" style="display: inline-block;">123456</span>
<script>
jQuery(document).ready(function( $ ) {
$('.counter').counterUp({
delay: 10,
time: 1000
});
});
</script>
데모페이지 : http://bfintal.github.io/Counter-Up/demo/demo.html
참고자료
https://github.com/bfintal/Counter-Up
http://www.blueb.co.kr/?c=1/7&uid=3896
http://imivory.tistory.com/1
댓글목록
등록된 댓글이 없습니다.