0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

blockUI 使用

Posted at

居中显示

var __widowWidth = $(window).width(); 
var __popWidth = $("#edmContentList").width();
var __left = (__widowWidth - __popWidth)/2 + 'px';
var __windowHeight = $(window).height();
var __popHeight = $("#edmContentList").height();
var __top = (__windowHeight-__popHeight)/2 + 'px'; 
	$("#edmContentDiv").html("");
	$("#edm_id option").attr("selected",false);
	$("#edm_id option[index='0']").attr("selected",true);
	$.blockUI({"message":$("#domId"),css:{width:"60%",border:0,backgroundColor:"transparent","max-height":"300px","overflow-x":"hidden", left:__left,width:__popWidth+'px',top:"10%"},overlayCSS:  { 
        backgroundColor: '#000', 
        opacity:         0.6,
        cursor:          'wait' ,
			
    }});
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?