Home  >  Article  >  Web Front-end  >  Custom dialog box implemented with JQuery_jquery

Custom dialog box implemented with JQuery_jquery

WBOY
WBOYOriginal
2016-05-16 19:16:151176browse

JavaScript provides us with several dialog box functions, but the functions are very limited; although richer dialog box functions can be created through modal forms under IE, after all, only IE is supported. In order to get richer custom dialog box functions, I wrote a dialog box plug-in using JQuery; you can get rich custom dialog box functions by simply quoting the relevant JavaScript.
Plug-in features:
Allows appearance control through CSS.
You can display any element of the page as a dialog box.
When the dialog box is activated, any elements outside the dialog box cannot accept mouse operations.
The dialog box can be moved arbitrarily within the work area, and the centering function is adaptive according to the size of the work area.
There is no need to write complex JavaScript, just describe it through simple HTML attributes.
The plug-in has been tested and can work normally under Firefox and IE.
Simple usage description:
Reference to JQuery and dialog plug-in files:
;/script>
Define the relevant button as a row:

Define the content displayed in the relevant dialog box:

';
if(option.parent)
                                                                             (document.body).append(html); css,region;
region = GetDocumentRegion();
css ={width:region.width "px",height:region.height "px",
left: MessageBox_scrollleft 'px',top: MessageBox_scroll top 'px'}
GetOpacity(css);
$("#messagebox_enabled").css(css);
$("#messagebox_enabledframe").css(css);
} 🎜 > //Set transparent style
function GetOpacity(css)
{
if(window.navigator.userAgent.indexOf('MSIE')>=1)
{ css.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=30)';
                              } 
     } 
//Set dialog sample
function SetStyle(option)
{
var region,css;
region = GetDocumentRegion();
css = {width:MessageBox_width 'px',height :MessageBox_height 'px',
left: ((region.width - MessageBox_width)/2) 'px',top: ((region.height - MessageBox_height)/2) 'px'}
if(region. height < MessageBox_height )//If the height of the body display is less than the height of the dialog box
                                                                                                                          🎜> css.top =((region.height - MessageBox_height)/2) 'px'
} }
$('#messagebox_win').css(css);
css.top='0px';
css .left='0px';
             $('#messagebox_table') .css(css); ('#messagebox_title_td').css(css);                                             
var down_x,down_y,cx,cy;
function handleMouseDown(e)
{
var evt = e || event;
down_x=evt.clientX;
down_y = evt.clientY;
cx =(parseInt(MessageBox_win.css('left'))|0);
cy = (parseInt(MessageBox_win.css('top'))|0)
MessageBox_Moving= true;3
document.documentElement.onselectstart = function(){return false};
document.documentElement.ondrag = function(){return false};
document.onmousemove = handleMouseMove;
$(document.body).append('
'); 
         $('#messagebox_move').css('width',MessageBox_win.css('width')); 
         $('#messagebox_move').css('height',MessageBox_win_u99 ?ss('height')); 
         $('#messagebox_move').css('left',MessageBox_win.css('left')); 
         $('#messagebox_move').css('top',MessageBox_win.css('top')); 

    } 
    function GetDocumentRegion() 
    { 
        var w,h,de; 
        de = document.documentElement; 
        w = self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth; 
        h = self.innerHeight || (de&&de.clientHeight)|| document.body.clientHeight; 
        return {height:h,width:w}; 
    } 
    function handleMouseMove(e) 
    { 
        var left,top,region; 
        if (MessageBox_Moving) 
        { 
            var evt = e || event; 
            left =evt.clientX cx-down_x; 
            top = evt.clientY cy-down_y; 
            region = GetDocumentRegion(); 
            if(left  MessageBox_width > region.width) 
            { 
                left = region.width - 10- MessageBox_width; 
            } 
            if(top   MessageBox_height >region.height)3 
            { 
                top = region.height-10 - MessageBox_height; 
            } 
            if(left <10) 
                left =10; 
            if(top <10) 
                top =10; 
            var css ={left:left 'px',top:top 'px'} 
            $('#messagebox_move').css(css); 
        } 
    } 
    function handleMouseUp() 
    { 
        if(MessageBox_Moving) 
        { 
            MessageBox_win.css('width',$('#messagebox_move').css("width")); 
            MessageBox_win.css('height',$('#messagebox_move').css("height")); 
            MessageBox_win.css('left',$('#messagebox_move').css("left")); 
            MessageBox_win.css('top',$('#messagebox_move').css("top")); 
        }
MessageBox_Moving _u61 ? false;
document.onmousemove = null;
$('#messagebox_move').remove();
}

}
//Close mode Dialog box
function CloseMessageBox()
{
if(MessageOninit)
{
$('#messagebox_win').hide();
$('#messagebox_enabled'). remove();
$('#messagebox_enabledframe').remove();
Messagebox_AC.css('display','none');
MessageBox_PC.append(Messagebox_AC);
}
document.documentElement.onselectstart = null;
document.documentElement.ondrag = null;
}
$(document).ready(function(){
$(document).find(' [@showoption]').each(function(){
var namevalue;
var option ={control:'',width:'400',height:'400',title:'',parent:null};
var properties = $(this).attr('showoption').split(' ;');
for(i=0;i { >1)                                                                                                                                                
$(this).click(function(){
ShowMessageBox(option);
document.body.focus();
});
});
}) ;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What does this[] refer to? Discussion_javascript skillsNext article:What does this[] refer to? Discussion_javascript skills

Related articles

See more