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

잔글 (Jmnote 사용자가 Toastr 문서를 JQuery 토스트 toastr 문서로 옮겼습니다)
23번째 줄: 23번째 줄:
==참고 자료==
==참고 자료==
*https://github.com/CodeSeven/toastr
*https://github.com/CodeSeven/toastr
*http://codeseven.github.io/toastr/demo.html


[[분류: jQuery]]
[[분류: jQuery]]

2015년 8월 10일 (월) 11:12 판

jQuery 토스트 toastr

1 예시

<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,
	}
	$('#show-toast').click( function() {
		toastr["success"]("안녕하세요?")
	});
});
</script>

<button id='show-toast'>토스트!</button>

2 참고 자료

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