- function layer_open(layer_id, pop_id){
- var temp = $('#' + layer_id);
- var bg = temp.prev().hasClass('bg');
- if(bg){
- $( '#' + pop_id).fadeIn();
- }else{
- temp.fadeIn();
- }
- //if (temp.outerHeight() < $(document).height() ) temp.css('margin-top', '-'+temp.outerHeight()/2+'px');
- //else temp.css('top', '0px');
- //if (temp.outerWidth() < $(document).width() ) temp.css('margin-left', '-'+temp.outerWidth()/2+'px');
- //else temp.css('left', '0px');
- temp.find('a.cbtn').click(function(e){
- if(bg){
- $('#' + pop_id).fadeOut();
- }else{
- temp.fadeOut();
- }
- e.preventDefault();
- });
- $('#' + pop_id + ' .bg').click(function(e){
- $('#' + pop_id).fadeOut();
- e.preventDefault();
- });
- }
Raw Paste