jQuery 實做網頁遮罩 Mask

定義function:

(function($){
$.extend({
documentMask: function(options){
// 扩展参数
var op = $.extend({
opacity: 0.8,
z: 10000,
bgcolor: ‘#000’
}, options);
// 创建一个 Mask 层,追加到 document.body
$(‘

‘).appendTo(document.body).css({
position: ‘absolute’,
top: ‘0px’,
left: ‘0px’,
‘z-index’: op.z,
width: $(document).width(),
height: $(document).height(),
‘background-color’: op.bgcolor,
opacity: 0
}).fadeIn(‘slow’, function(){
// 淡入淡出效果
$(this).fadeTo(‘slow’, op.opacity);
}).click(function(){
// 单击事件,Mask 被销毁
$(this).fadeTo(‘slow’, 0, function(){
$(this).remove();
});
});
return this;
}
});
})(jQuery);

使用方法:

$.documentMask();
$.documentMask({
‘opacity’: 0.6,
‘bgcolor’: ‘#E79673’,
‘z’: 1000000
});

http://www.jb51.net/article/21780.htm

分類: 未分類

發表迴響