亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

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

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

復(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)文章

最新評論