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에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 1277 | 기타 |
선택과집중
|
1개월 전 | 139 | |
| 1276 | CSS |
선택과집중
|
2개월 전 | 260 | |
| 1275 | CSS |
선택과집중
|
2개월 전 | 259 | |
| 1274 | CSS |
선택과집중
|
3개월 전 | 448 | |
| 1273 | 기타 |
선택과집중
|
3개월 전 | 390 | |
| 1272 | CSS |
선택과집중
|
4개월 전 | 522 | |
| 1271 | CSS |
선택과집중
|
4개월 전 | 567 | |
| 1270 | CSS |
선택과집중
|
5개월 전 | 447 | |
| 1269 | CSS |
선택과집중
|
5개월 전 | 528 | |
| 1268 | CSS | 5개월 전 | 419 | ||
| 1267 | 9개월 전 | 699 | |||
| 1266 | HTML | 9개월 전 | 829 | ||
| 1265 | CSS |
|
1년 전 | 757 | |
| 1264 | 1년 전 | 1247 | |||
| 1263 | HTML |
|
1년 전 | 782 | |
| 1262 | CSS |
|
1년 전 | 985 | |
| 1261 | CSS |
|
1년 전 | 998 | |
| 1260 | HTML | 2년 전 | 1480 | ||
| 1259 | 기타 | 2년 전 | 821 | ||
| 1258 | CSS |
|
2년 전 | 1573 | |
| 1257 | HTML |
|
2년 전 | 1361 | |
| 1256 | CSS |
돈도없어개발하기도시러
|
2년 전 | 1263 | |
| 1255 | 2년 전 | 3600 | |||
| 1254 | 2년 전 | 4788 | |||
| 1253 | 2년 전 | 1543 | |||
| 1252 | 레이아웃 |
swallow
|
2년 전 | 1773 | |
| 1251 | 웹접근성 |
두리삼촌v
|
2년 전 | 2042 | |
| 1250 | 레이아웃 |
두리삼촌v
|
2년 전 | 1681 | |
| 1249 | 레이아웃 |
두리삼촌v
|
2년 전 | 3204 | |
| 1248 | 기타 |
돈도없어개발하기도시러
|
2년 전 | 1138 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기