袁来如此的工作笔记
袁来如此的工作笔记
竹杖芒鞋轻胜马,谁怕? 一蓑烟雨任平生。

js alert confirm添加半透明全屏背景

浏览量:730

function alrt(msg) {  

    var tint = $('<div class="PopupBgTint"></div>');  

    tint.appendTo('body');  

    alert(msg);  

    tint.remove();  

}  

function cnfrm(msg) {  

    var tint = $('<div class="PopupBgTint"></div>');  

    tint.appendTo('body');  

    var rtrn = confirm(msg);  

    tint.remove();  

    return rtrn;  

}  




.PopupBgTint  

{  

    position: fixed;  

    top: 0px;  

    left: 0px;  

    width: 100%;  

    height: 100%;  

    background-color: black;  

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";  

    filter: alpha(opacity=50);  

    -moz-opacity: 0.5;  

    -khtml-opacity: 0.5;  

    opacity: 0.5;  

    z-index:99999;  

}  


打赏