jQuery弹出层插件简化版代码下载

2020-05-22 17:04:27易采站长站整理

___id___ = settings.id;
},
layershow:function(){
var __bw = $(“body”).width();
var __bh = $(“body”).height() > $(window).height() ? $(“body”).height() : $(window).height();
var _width = $.layerSettings.width;
var _height = $.layerSettings.height;
if(document.getElementById(___id___)) return;
var _moveid = ___id___ + “_move”;
var _titleid = ___id___ + “_title”;
var _contentid = ___id___ + “_content”;
var _cssurl = $.layerSettings.cssurl;
var opacity = $.layerSettings.opacity;
__index = $.layermaxindex();
var __left = (__bw – _width) > 0 ? (__bw – _width)/2 : 0;
var __top = 100;
var __bgDiv = ‘<div id=”‘+___id___+’_background” style=”background:#000000; filter:alpha(opacity=’+(opacity*100)+’); opacity: ‘+opacity+’; width:’+__bw+’px; height:’+__bh+’px; z-index:’+(__index++)+’; position:absolute; left:0px; top:0px;”></div>’;
if($.layerSettings.isbg)
{
$(“body”).append(__bgDiv);
}
$(“body”).append(‘<div id=”‘+___id___+'” style=”z-index:’+__index+’;position:absolute; left:’+__left+’px; top:’+__top+’px;”></div>’);
var _templete = $.layerSettings.templete;
var __templete = _templete.replaceAll(“@width@”,_width).replaceAll(“@height@”,_height).replaceAll(“@titleid@”,_titleid).replaceAll(“@contentid@”,_contentid).replaceAll(“@title@”,jQuery.layerSettings.title).replaceAll(“@moveid@”,_moveid);
$(“#”+___id___).append(__templete);
$(“#”+_contentid).append($.layerSettings.content);
$(“#”+_titleid).append($.layerSettings.title);
var idd = ___id___;
$(“.layerclose”).bind(“click”,function()
{
$.layerclose(idd);
});
$(“#”+___id___).bind(“click”,function()
{
var id = this.id;
$.layerSetup(___settings___[id]);
$(this).css(“z-index”,$.layermaxindex());
});
$(document).bind(“click”,function(e)
{
var pos = $.getMousePosition(e);
});
$(document).mousemove(function(e){
if(isMouseDown && dragStatus[currentElement.id] != ‘false’){
$.updatePosition(e);
if(dragCallbacks[currentElement.id] != undefined){
dragCallbacks[currentElement.id](e, currentElement);
}
return false;
}
});
$(document).mouseup(function(e){
if(isMouseDown && dragStatus[currentElement.id] != ‘false’){
isMouseDown = false;
if(dropCallbacks[currentElement.id] != undefined){
dropCallbacks[currentElement.id](e, currentElement);
}
return false;
}
});
(function(){
bubblings[___id___] = true;
dragStatus[___id___] = “on”;