国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > WEB開發 > 正文

試試居中的插件封裝

2024-04-27 15:01:23
字體:
來源:轉載
供稿:網友
//構造函數
;(function($, window, document,undefined){
var MaskLayer = function(ele, opt){
this.$element = ele,
this.defaults = {
width:'500px',
height:"500px",
backgroundColor:"#00baff",
display:"block"
},
this.options = $.extend({}, this.defaults, opt)
};
//方法
MaskLayer.PRototype = {
mask: function() {
var _left,_top,_newWidth,_newHeight;
if($('div').is('.big-mask')){
$(".big-mask").CSS({display:"block"})
}else{
$("body").append("<div class='big-mask'></div>");
$(".big-mask").css({
position:"fixed" ,
width:"100%",
height:"100%",
top:0,
left:0,
backgroundColor:"#000",
opacity: "0.5",
filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=50)",
zIndex: "99999"
});
}
console.log(this.$element);
this.$element.css({
backgroundColor:this.options.backgroundColor,
width:this.options.width,
height:this.options.height,
display:this.options.display,
zIndex: "999999",
position:"fixed"
});
_left = parseInt($(window).width()/2);
_top = parseInt($(window).height()/2);
_newWidth =_left-parseInt(this.options.width)/2;
_newHeight =_top-parseInt(this.options.height)/2;

return this.$element.css({
'left': _newWidth,
'top':_newHeight
});
},
removeMask:function(){
this.$element.css({display:"none"});
$(".big-mask").css({display:"none"});
}
};
//myMaskLayer對象使用
$.fn.createMaskLayer = function(options) {
var masklayer = new MaskLayer(this, options);
return masklayer.mask();
}

$.fn.maskRemove = function(options) {
var masklayer = new MaskLayer(this, options);
return masklayer.removeMask();
}

})(jQuery, window, document);



//調用方法
$(".aaa").createMaskLayer({
backgroundColor:"#fff",
width:"300px",
height:"300px"
});


$(".aaa").maskRemove();

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 兰溪市| 高邑县| 清水县| 扬州市| 商城县| 乐安县| 新巴尔虎右旗| 高要市| 望谟县| 阿拉善盟| 邳州市| 股票| 通海县| 夏邑县| 纳雍县| 泽库县| 汉源县| 赫章县| 平昌县| 壶关县| 稻城县| 哈巴河县| 克山县| 贺州市| 彭泽县| 鸡西市| 集贤县| 巴林左旗| 舟曲县| 宁明县| 古丈县| 庆城县| 长春市| 报价| 英超| 凉山| 武宣县| 克拉玛依市| 五常市| 天祝| 苏尼特左旗|