"JQuery UI timepicker 크기 조정"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
2번째 줄: 2번째 줄:
;jQuery UI timepicker 크기 조정
;jQuery UI timepicker 크기 조정


<source lang='html5'>
<syntaxhighlight lang='html5'>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<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/jquery.min.js"></script>
20번째 줄: 20번째 줄:
      
      
<input type="text" class='timepicker'>
<input type="text" class='timepicker'>
</source>
</syntaxhighlight>
<jsfiddle height='200'>m780182g</jsfiddle>
<jsfiddle height='200'>m780182g</jsfiddle>



2020년 11월 2일 (월) 02:53 기준 최신판

1 개요[ | ]

jQuery UI timepicker 크기 조정
<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>

<link rel="stylesheet" href="//cdn.rawgit.com/fgelinas/timepicker/master/jquery.ui.timepicker.css">
<script src='//cdn.rawgit.com/fgelinas/timepicker/master/jquery.ui.timepicker.js'></script>

<style>
.ui-timepicker { font-size: 12px; width: 80px; }
</style>    
<script>
$(function() {
    $('.timepicker').timepicker();
});
</script>
    
<input type="text" class='timepicker'>

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}