아래를 추가해서 사용하세요.
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();
}
};게시글 목록
| 번호 | 제목 |
|---|---|
| 1515 | |
| 1514 |
HTML
공백 문자의 병합
|
| 1513 |
HTML
제대로 단위 사용하자
|
| 1507 | |
| 1501 | |
| 1499 |
HTML
이미지를 돌려요 ~
1
|
| 1498 |
HTML
css3 메뉴
|
| 1497 | |
| 1495 |
HTML
가변 위치에 배너 붙이기
1
|
| 1491 | |
| 1488 | |
| 1487 |
HTML
[vim] 주석 달기~
1
|
| 1470 | |
| 1466 |
HTML
브라우저별 개발모드
3
|
| 1465 |
JavaScript
Http Live Stream 에 관하여
|
| 1453 |
JavaScript
img 자체에서 이미지 없을때 안보이게 하기
12
|
| 1449 | |
| 1441 | |
| 1435 | |
| 1434 | |
| 1432 |
HTML
도와 주세요
1
|
| 1431 | |
| 1429 | |
| 1428 | |
| 1427 | |
| 1426 | |
| 1424 | |
| 1422 |
HTML
툴바 프로그램개발할때....
1
|
| 1417 |
HTML
코드 잘 모르는 이가 질문
4
|
| 1415 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기