美文网首页
纯js+css遮挡层Demo

纯js+css遮挡层Demo

作者: vincky倩 | 来源:发表于2018-06-12 14:29 被阅读0次

    css代码如下:

    *{margin:0;padding:0;list-style-type:none;}

    a,img{border:0;}

    .overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:998;width:100%;height:100%;_padding:0 20px 0 0;background:#f6f4f5;display:none;}

    .showbox{position:fixed;top:0;left:50%;z-index:9999;opacity:0;filter:alpha(opacity=0);margin-left:-80px;}

    *html,*html body{background-image:url(about:blank);background-attachment:fixed;} *html .showbox,*html .overlay{position:absolute;top:expression(eval(document.documentElement.scrollTop));} #AjaxLoading{border:1px solid #8CBEDA;color:#37a;font-size:12px;font-weight:bold;} #AjaxLoading div.loadingWord{width:180px;height:50px;line-height:50px;border:2px solid #D6E7F2;background:#fff;}

    #AjaxLoading img{margin:10px 15px;float:left;display:inline;}

    js代码如下:

    //显示蒙版

    function showOverlay(){

        $(".overlay").css({'display':'block','opacity':'0.8'});

        $(".showbox").stop(true).animate({'margin-top':'300px','opacity':'1'},200);

    }

    //隐藏蒙版

    function hideOverlay(){

        $(".showbox").stop(true).animate({'margin-top':'250px','opacity':'0'},400);

        $(".overlay").css({'display':'none','opacity':'0'});

    }

    html代码如下:

    相关文章

      网友评论

          本文标题:纯js+css遮挡层Demo

          本文链接:https://www.haomeiwen.com/subject/ztnleftx.html