欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JS實(shí)現(xiàn)遮罩層效果的簡(jiǎn)單實(shí)例

 更新時(shí)間:2013年11月12日 16:26:51   作者:  
這篇文章介紹了JS實(shí)現(xiàn)遮罩層效果的簡(jiǎn)單實(shí)例,有需要的朋友可以參考一下

復(fù)制代碼 代碼如下:

function show(){

    var cover = document.getElementById("cover");

    cover.style.width = document.documentElement.scrollWidth+"px";

    cover.style.height = document.documentElement.scrollHeight+"px";

    cover.style.display = "block";

}

#cover{

    background:gray;

    position:absolute;

    left:0px;

    top:0px;

    display:none;

    z-index:20;

    filter:alpha(opacity=60);

    opacity:0.6 !important;

    }

相關(guān)文章

最新評(píng)論