아래를 추가해서 사용하세요.
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();
}
};게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7930 | 9년 전 | 395 | ||
| 7929 | 9년 전 | 312 | ||
| 7928 | 9년 전 | 404 | ||
| 7927 | 9년 전 | 325 | ||
| 7926 | 9년 전 | 655 | ||
| 7925 | 9년 전 | 339 | ||
| 7924 | 9년 전 | 326 | ||
| 7923 | 9년 전 | 332 | ||
| 7922 | 9년 전 | 365 | ||
| 7921 | 9년 전 | 394 | ||
| 7920 | 9년 전 | 312 | ||
| 7919 | 9년 전 | 330 | ||
| 7918 | 9년 전 | 484 | ||
| 7917 | 9년 전 | 323 | ||
| 7916 | 9년 전 | 396 | ||
| 7915 | 9년 전 | 394 | ||
| 7914 | 9년 전 | 402 | ||
| 7913 | 9년 전 | 555 | ||
| 7912 | 9년 전 | 404 | ||
| 7911 | 9년 전 | 351 | ||
| 7910 | 9년 전 | 396 | ||
| 7909 | 9년 전 | 495 | ||
| 7908 | 9년 전 | 409 | ||
| 7907 | 9년 전 | 356 | ||
| 7906 | 9년 전 | 375 | ||
| 7905 | 9년 전 | 354 | ||
| 7904 | 9년 전 | 340 | ||
| 7903 | 9년 전 | 338 | ||
| 7902 | 9년 전 | 545 | ||
| 7901 |
|
9년 전 | 725 | |
| 7900 | 9년 전 | 565 | ||
| 7899 | 9년 전 | 364 | ||
| 7898 | 9년 전 | 373 | ||
| 7897 | 9년 전 | 329 | ||
| 7896 | 9년 전 | 349 | ||
| 7895 | 9년 전 | 457 | ||
| 7894 | 9년 전 | 373 | ||
| 7893 | 9년 전 | 320 | ||
| 7892 | 9년 전 | 371 | ||
| 7891 | 9년 전 | 748 | ||
| 7890 | 9년 전 | 1185 | ||
| 7889 | 9년 전 | 741 | ||
| 7888 |
limsy1987
|
9년 전 | 536 | |
| 7887 | 9년 전 | 533 | ||
| 7886 | 9년 전 | 421 | ||
| 7885 | 9년 전 | 390 | ||
| 7884 | 9년 전 | 397 | ||
| 7883 | 9년 전 | 389 | ||
| 7882 | 9년 전 | 428 | ||
| 7881 | 9년 전 | 424 | ||
| 7880 | 9년 전 | 547 | ||
| 7879 | 9년 전 | 447 | ||
| 7878 | 9년 전 | 1204 | ||
| 7877 | 9년 전 | 737 | ||
| 7876 | 9년 전 | 469 | ||
| 7875 | 9년 전 | 545 | ||
| 7874 |
|
9년 전 | 797 | |
| 7873 | 9년 전 | 507 | ||
| 7872 | 9년 전 | 662 | ||
| 7871 | 9년 전 | 469 | ||
| 7870 | 9년 전 | 596 | ||
| 7869 | 9년 전 | 419 | ||
| 7868 | 9년 전 | 427 | ||
| 7867 | 9년 전 | 408 | ||
| 7866 | 9년 전 | 475 | ||
| 7865 | 9년 전 | 436 | ||
| 7864 | 9년 전 | 502 | ||
| 7863 | 9년 전 | 496 | ||
| 7862 | 9년 전 | 458 | ||
| 7861 | 9년 전 | 615 | ||
| 7860 | 9년 전 | 607 | ||
| 7859 | 9년 전 | 397 | ||
| 7858 | 9년 전 | 691 | ||
| 7857 | 9년 전 | 1057 | ||
| 7856 | 9년 전 | 505 | ||
| 7855 | 9년 전 | 729 | ||
| 7854 | 9년 전 | 718 | ||
| 7853 | 9년 전 | 569 | ||
| 7852 | 9년 전 | 498 | ||
| 7851 | 9년 전 | 491 | ||
| 7850 | 9년 전 | 574 | ||
| 7849 | 9년 전 | 348 | ||
| 7848 | 9년 전 | 400 | ||
| 7847 | 9년 전 | 634 | ||
| 7846 | 9년 전 | 442 | ||
| 7845 | 9년 전 | 400 | ||
| 7844 | 9년 전 | 383 | ||
| 7843 | 9년 전 | 400 | ||
| 7842 | 9년 전 | 385 | ||
| 7841 | 9년 전 | 373 | ||
| 7840 | 9년 전 | 388 | ||
| 7839 | 9년 전 | 424 | ||
| 7838 | 9년 전 | 506 | ||
| 7837 | 9년 전 | 341 | ||
| 7836 | 9년 전 | 388 | ||
| 7835 | 9년 전 | 459 | ||
| 7834 |
|
9년 전 | 1184 | |
| 7833 | 9년 전 | 407 | ||
| 7832 | 9년 전 | 403 | ||
| 7831 | 9년 전 | 541 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기