12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- $(function(){
- var w_title,w_id,w_url,w_text;
-
- $('body').on('click','.popup',function(){
- var $that = $(this);
- var height = $('.m_form').outerHeight();
- var width = $('.m_form').outerWidth();
- CreatePopLayerDiv(width,width,'/public/signup');
- $('.m_signUp_box').show();
- $('.m_form').css('margin-top',-height/2 -20);
-
- parent.w_title = $that.attr('data-name');
- parent.w_id = $that.attr('data-id');
- parent.w_module = $that.attr('data-module');
- parent.w_text = $that.attr('data-text');
- parent.w_button = $that.attr('data-button');
- shanwutong();
- })
-
- $('.customize_btn').on('click',function(){
- var $that = $(this);
- var height = $('.m_form').outerHeight();
- var width = $('.m_form').outerWidth();
- CreatePopLayerDiv(width,width,'/public/customization');
- $('.m_signUp_box').show();
- $('.m_form').css('margin-top',-height/2 -20);
-
- parent.w_title = $that.attr('data-name');
- parent.w_id = $that.attr('data-id');
- parent.w_module = $that.attr('data-module');
- })
- })
- $('.m_close').on('click',function(){
- $('.m_signUp_box').fadeOut(300);
- })
- $('.m_signUp').on('click',function(){
- $('.m_signUp_box').fadeOut(300);
- })
- function CreatePopLayerDiv(width,height,url){
- var Iheight=$(window).outerHeight();
- var Iwidth =$(window).outerWidth();
- var heights = height || 300;
- var widths = width || 500;
- var Oheight= (Iheight -heights) / 2;
- var Owidth = (Iwidth - widths) /2;
- var div ='<div id="InDiv" style="width:'+Iwidth+'px;height:'+Iheight+'px;background:rgba(0,0,0,0.6);position:fixed;z-index:10000;top:0;left:0;">';
- div+='<div id="Content"></div>';
- div+='</div>';
- $(document.body).append(div);
- if(url != ""){
- $("#Content").load(url);
- }
- }
- function RemoveDiv(){
- $("#InDiv").remove();
- }
- function btnCloses(){
- RemoveDiv();
- }
|