t

Loading Panel Widget

· 14년 전 · 1950

                                     A YUI 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!');
});

loadingpanel.js:

$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();
    }
};


|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 2,858
14년 전 조회 1,850
14년 전 조회 1,795
14년 전 조회 1,508
14년 전 조회 1,749
14년 전 조회 2,779
14년 전 조회 1,359
14년 전 조회 3,325
14년 전 조회 1,677
14년 전 조회 1,381
14년 전 조회 1,378
14년 전 조회 1,635
14년 전 조회 1,548
14년 전 조회 1,457
14년 전 조회 1,957
14년 전 조회 1,368
14년 전 조회 2,005
14년 전 조회 2,392
14년 전 조회 1,359
14년 전 조회 1,510
14년 전 조회 1,339
14년 전 조회 1,501
14년 전 조회 1,929
14년 전 조회 1,629
14년 전 조회 1,753
14년 전 조회 1,551
14년 전 조회 1,724
14년 전 조회 1,308
14년 전 조회 2,171
14년 전 조회 1,501
14년 전 조회 2,252
14년 전 조회 8,999
14년 전 조회 1,588
14년 전 조회 2,430
14년 전 조회 2,170
14년 전 조회 2,421
14년 전 조회 2,792
14년 전 조회 1,388
14년 전 조회 1,525
14년 전 조회 7,316
14년 전 조회 1,483
14년 전 조회 1,423
14년 전 조회 2,599
14년 전 조회 1,482
14년 전 조회 1,471
14년 전 조회 2,939
14년 전 조회 1,547
14년 전 조회 4,460
14년 전 조회 4,593
14년 전 조회 1,951
14년 전 조회 1,501
14년 전 조회 2,181
14년 전 조회 1,457
14년 전 조회 1,760
14년 전 조회 1,345
14년 전 조회 8,245
14년 전 조회 1,881
14년 전 조회 1,285
14년 전 조회 1,441
14년 전 조회 2,139
14년 전 조회 1,589
14년 전 조회 1,451
14년 전 조회 1,534
14년 전 조회 1,455
14년 전 조회 1,307
14년 전 조회 1,421
14년 전 조회 1,429
14년 전 조회 1,416
14년 전 조회 1,477
14년 전 조회 1,725
14년 전 조회 1,727
14년 전 조회 2,000
14년 전 조회 1,599
14년 전 조회 1,529
14년 전 조회 1,430
14년 전 조회 1,377
14년 전 조회 1,376
14년 전 조회 1,557
14년 전 조회 2,778
14년 전 조회 1,434
14년 전 조회 1,756
14년 전 조회 2,920
14년 전 조회 2,043
14년 전 조회 1,781
14년 전 조회 5,532
14년 전 조회 2,727
14년 전 조회 1,542
14년 전 조회 1,460
14년 전 조회 1,422
14년 전 조회 1,310
14년 전 조회 2,587
14년 전 조회 3,922
14년 전 조회 1,395
14년 전 조회 1,583
14년 전 조회 2,579
14년 전 조회 1,419
14년 전 조회 2,077
14년 전 조회 2,419
14년 전 조회 1.1만
14년 전 조회 1,966