(→같이 보기) |
(→같이 보기) |
||
23번째 줄: | 23번째 줄: | ||
==같이 보기== | ==같이 보기== | ||
*[[jQuery UI 프로그레스바 타이머]] | *[[jQuery UI 프로그레스바 타이머]] | ||
*[[HTML5 progress 태그]] | |||
*[[jQuery UI]] | *[[jQuery UI]] | ||
*[[프로그레스바]] | *[[프로그레스바]] |
2015년 11월 3일 (화) 16:51 판
1 개요
- jQuery UI progressbar
- jQuery UI 프로그래스바
html
Copy
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<script>
$(function() {
$( "#progressbar1" ).progressbar({ value: 10 });
$( "#progressbar2" ).progressbar({ value: 75 });
});
</script>
<div id="progressbar1"></div>
<br>
<div id="progressbar2"></div>
2 같이 보기
3 참고 자료
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.