Loading Panel Widget
아래를 추가해서 사용하세요.
var loadingPanel = new yuiLoadingPanel();
//loadingPanel.show();
//loadingPanel.show("Processing...");
//loadingPanel.hide();
The user can close the loading box by clicking on the cancel link. If you want to handle this situation, you can subscribe to the cancelEvent:
loadingPanel.cancelEvent.subscribe(function(e, a, o){
alert('You clicked cancel!');
});
$D = YAHOO.util.Dom;
$E = YAHOO.util.Event;
var yuiLoadingPanel = function(conf){
conf = conf == undefined ? new Array() : conf;
conf.id = conf.id == undefined ? 'yuiLoadingPanel':confi.id;
conf.header = conf.header == undefined ? 'Loading, please wait...':conf.header;
conf.width = conf.width == undefined ? '240px':conf.width;
this.conf = conf;
this.cancelEvent = new YAHOO.util.CustomEvent("cancelEvent", this);
this.init();
};
yuiLoadingPanel.prototype = {
init:function(){
var loadingPanel = new YAHOO.widget.Panel(this.conf.id,{
width:this.conf.width,
fixedcenter:true,
close:false,
draggable:false,
modal:true,
visible:false
});
loadingPanel.setBody(this.conf.header +
'<img src="http://us.i1.yimg.com/us.yimg.com/i/us/per/gr/gp/rel_interstitial_loading.gif" />');
loadingPanel.render(document.body);
$D.addClass(loadingPanel.id, 'tcc_lightboxLoader');
var cancelLink = document.createElement('a');
$D.setStyle(cancelLink, 'cursor', 'pointer');
cancelLink.appendChild(document.createTextNode('Cancel'));
$E.on(cancelLink, 'click', function(e, o){
o.self.loadingPanel.hide();
o.self.cancelEvent.fire();
}, {self:this});
loadingPanel.appendToBody(document.createElement('br'));
loadingPanel.appendToBody(cancelLink);
$D.setStyle(loadingPanel.body, 'text-align', 'center');
$D.addClass(document.body, 'yui-skin-sam');
this.loadingPanel = loadingPanel;
},
show:function(text){
if(text != undefined){
this.loadingPanel.setHeader(text);
}else{
this.loadingPanel.setHeader(this.conf.header);
}
this.loadingPanel.show();
},
hide:function(){
this.loadingPanel.hide();
}
};게시판 목록
퍼블리셔팁
퍼블리싱과 관련된 유용한 정보를 공유하세요.
질문은 상단의 QA에서 해주시기 바랍니다.
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 497 | HTML | 14년 전 | 3445 | ||
| 496 | HTML |
피디인사이드
|
14년 전 | 2897 | |
| 495 | HTML |
wgarlic
|
14년 전 | 5887 | |
| 494 | HTML |
또치2009
|
14년 전 | 2442 | |
| 493 | HTML | 14년 전 | 2457 | ||
| 492 | HTML | 14년 전 | 2930 | ||
| 491 | HTML |
techer
|
14년 전 | 1932 | |
| 490 | HTML | 14년 전 | 2391 | ||
| 489 | HTML |
|
14년 전 | 3206 | |
| 488 | HTML |
level999
|
14년 전 | 2435 | |
| 487 | HTML | 14년 전 | 2439 | ||
| 486 | HTML | 14년 전 | 3768 | ||
| 485 | HTML | 14년 전 | 2524 | ||
| 484 | HTML | 14년 전 | 2170 | ||
| 483 | HTML | 14년 전 | 2576 | ||
| 482 | HTML |
gtm100
|
14년 전 | 2173 | |
| 481 | HTML | 14년 전 | 2521 | ||
| 480 | HTML | 14년 전 | 2593 | ||
| 479 | HTML |
매너천사12
|
14년 전 | 2794 | |
| 478 | HTML | 14년 전 | 2187 | ||
| 477 | HTML |
플레이디원
|
14년 전 | 4257 | |
| 476 | HTML |
berry
|
14년 전 | 3169 | |
| 475 | HTML | 14년 전 | 3076 | ||
| 474 | HTML | 14년 전 | 2269 | ||
| 473 | HTML | 14년 전 | 2655 | ||
| 472 | HTML | 14년 전 | 5362 | ||
| 471 | HTML | 14년 전 | 2019 | ||
| 470 | HTML |
아놔6636
|
14년 전 | 3489 | |
| 469 | HTML | 14년 전 | 1973 | ||
| 468 | HTML |
아놔6636
|
14년 전 | 6564 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기