"JQuery 토스트 toastr"의 두 판 사이의 차이

잔글
1번째 줄: 1번째 줄:
==개요==
;jQuery 토스트 toastr
;jQuery 토스트 toastr
<source lang=jQuery'>
toastr.sucess('내용', '제목');
toastr.warning('내용', '제목');
toastr.error('내용', '제목');
</source>


==예시==
==예시==
<source lang='JavaScript'>
<source lang='jQuery'>
<link rel='stylesheet' href='//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css'/>
<link rel='stylesheet' href='//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css'/>
<script src='//code.jquery.com/jquery.min.js'></script>
<script src='//code.jquery.com/jquery.min.js'></script>

2015년 8월 21일 (금) 15:45 판

1 개요

jQuery 토스트 toastr
toastr.sucess('내용', '제목');
toastr.warning('내용', '제목');
toastr.error('내용', '제목');

2 예시

<link rel='stylesheet' href='//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css'/>
<script src='//code.jquery.com/jquery.min.js'></script>
<script src='//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js'></script>
<script>
$(function() {
	toastr.options = {
		"progressBar": true,
		"timeOut": 1000,
	}
	$('#show-toast1').click( function() {
		toastr.success("안녕하세요?")
	});
    $('#show-toast2').click( function() {
        toastr.warning("안녕하세요?", "제목", {timeOut: 5000});
    });
});
</script>

<button id='show-toast1'>토스트 #1</button>
<br>
<br>
<button id='show-toast2'>토스트 #2</button>

3 같이 보기

4 참고 자료

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