jquery blockUI 頁面遮罩的特效

温智明
2023-12-01

1、页面遮罩

$.blockUI({
                message : $("#aa"), --遮罩需要显示的信息(可无)
                css : {  --遮罩层的样式(可无)
                    width : '0px',
                    height : '0px',
                    left : ($(window).width() - 240) / 2 + 'px',
                    top : ($(window).height() - 190) / 2 + 'px',
                    border : 'none',
                    zindex : 9999  --显示的zindex值,越大越现实在上层
                },
                baseZ : 9999  --显示的zindex值,越大越现实在上层

 });

 

2、遮罩取消

$.blockUI()  --绑定到特定的事件上,如:单击事件等。

 类似资料: