jQuery實現遮罩層

1.1 背景半透明遮罩層樣式css

  須要一個黑色(固然也能夠其餘)背景,且須設置爲絕對定位,如下是項目中用到的css樣式:瀏覽器

/* 半透明的遮罩層 */
#overlay {
    background: #000;
    filter: alpha(opacity=50); /* IE的透明度 */
    opacity: 0.5;  /* 透明度 */
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 100; /* 此處的圖層要大於頁面 */
    display:none;
}

1.2 jQuery實現遮罩ide

/* 顯示遮罩層 */
function showOverlay() {
    $("#overlay").height(pageHeight());
    $("#overlay").width(pageWidth());

    // fadeTo第一個參數爲速度,第二個爲透明度
    // 多重方式控制透明度,保證兼容性,但也帶來修改麻煩的問題
    $("#overlay").fadeTo(200, 0.5);
}

/* 隱藏覆蓋層 */
function hideOverlay() {
    $("#overlay").fadeOut(200);
}

/* 當前頁面高度 */
function pageHeight() {
    return document.body.scrollHeight;
}

/* 當前頁面寬度 */
function pageWidth() {
    return document.body.scrollWidth;
}

1.3 提示框spa

  遮罩的目的無非讓人沒法操做內容,突出提示框,而提示框可參考上面的製做,z-index比遮罩層更高即可。主要問題是,如何控制提示框在瀏覽器居中。code

/* 定位到頁面中心 */
function adjust(id) {
    var w = $(id).width();
    var h = $(id).height();
    
    var t = scrollY() + (windowHeight()/2) - (h/2);
    if(t < 0) t = 0;
    
    var l = scrollX() + (windowWidth()/2) - (w/2);
    if(l < 0) l = 0;
    
    $(id).css({left: l+'px', top: t+'px'});
}

//瀏覽器視口的高度
function windowHeight() {
    var de = document.documentElement;

    return self.innerHeight || (de && de.clientHeight) || document.body.clientHeight;
}

//瀏覽器視口的寬度
function windowWidth() {
    var de = document.documentElement;

    return self.innerWidth || (de && de.clientWidth) || document.body.clientWidth
}

/* 瀏覽器垂直滾動位置 */
function scrollY() {
    var de = document.documentElement;

    return self.pageYOffset || (de && de.scrollTop) || document.body.scrollTop;
}

/* 瀏覽器水平滾動位置 */
function scrollX() {
    var de = document.documentElement;

    return self.pageXOffset || (de && de.scrollLeft) || document.body.scrollLeft;
}
相關文章
相關標籤/搜索