부트스트랩 Modal Autoload
사용방법
부트스트랩 모달팝업에 data-autoload="true" data-autoload-delay="2000" 추가
data-autoload : 사용여부
data-autoload-delay : 모달팝업 지연
[첨부파일 참조]
HTML
[code]
<div id="Modal_Autoload" class="modal fade" data-autoload="true" data-autoload-delay="2000">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Modal Autoload</h4>
</div>
<div class="modal-body">
<p>Modal Content</p>
</div>
<div class="modal-footer">
<div class="checkbox pull-left">
<label>
<input class="loadModalHide" type="checkbox" value=""> 팝업을 다시 표시하지 않음.
</label>
</div>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save</button>
</div>
</div>
</div>
</div>
[/code]
JS
[code]
jQuery(window).ready(function () {
/** Modal Autoload
**************************************************************** **/
if(jQuery("div.modal").length > 0) {
jQuery("div.modal").each(function() {
var _t = jQuery(this),
_id = _t.attr('id'),
_autostart = _t.attr('data-autoload') || false;
// reset allow
// localStorage.removeItem(_id);
if(_id != '') { // rewrite if set to hidden by the user
if(localStorage.getItem(_id) == 'hidden') {
_autostart = 'false';
}
}
if(_autostart == 'true') {
jQuery(window).on("load", function() { // required on load!
var _delay = _t.attr('data-autoload-delay') || 1000; // delay when modal apprear
setTimeout(
function() {
_t.modal('toggle');
}, parseInt(_delay));
});
}
// LOCAL STORAGE - DO NOT HIDE ON NEXT PAGE LOAD!
jQuery("input.loadModalHide", this).bind("click", function() {
var _tt = jQuery(this);
if(_tt.is(":checked")) {
localStorage.setItem(_id, 'hidden');
console.log('[Modal Autoload #'+_id+'] Added to localStorage');
} else {
localStorage.removeItem(_id);
console.log('[Modal Autoload #'+_id+'] Removed from localStorage');
}
});
});
}
});
[/code]
댓글 5개
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 3년 전 | 4402 | ||
| 1914 |
welcome
|
4년 전 | 2815 | |
| 1913 | 4년 전 | 3153 | ||
| 1912 | 4년 전 | 3834 | ||
| 1911 | 4년 전 | 4075 | ||
| 1910 |
|
4년 전 | 3321 | |
| 1909 | 4년 전 | 4119 | ||
| 1908 | 4년 전 | 6509 | ||
| 1907 |
D2Bweb
|
4년 전 | 3656 | |
| 1906 |
그누x쵸딩
|
4년 전 | 5076 | |
| 1905 |
그누x쵸딩
|
4년 전 | 2812 | |
| 1904 | 4년 전 | 4776 | ||
| 1903 | 4년 전 | 4245 | ||
| 1902 | 4년 전 | 3277 | ||
| 1901 | 4년 전 | 3776 | ||
| 1900 | 4년 전 | 3218 | ||
| 1899 | 4년 전 | 2992 | ||
| 1898 | 4년 전 | 4138 | ||
| 1897 | 4년 전 | 3294 | ||
| 1896 | 4년 전 | 2831 | ||
| 1895 |
welcome
|
4년 전 | 3061 | |
| 1894 |
welcome
|
4년 전 | 2655 | |
| 1893 | 4년 전 | 4890 | ||
| 1892 | 4년 전 | 4344 | ||
| 1891 |
7일의태양
|
4년 전 | 4448 | |
| 1890 | 4년 전 | 6446 | ||
| 1889 | 4년 전 | 4722 | ||
| 1888 | 4년 전 | 4348 | ||
| 1887 | 4년 전 | 3265 | ||
| 1886 |
슈퍼스타맨
|
4년 전 | 4798 | |
| 1885 | 4년 전 | 3810 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기