• JQuery实现页面Loading效果


    第一步:添加遮罩层和LOADING层

    <div class="overlay"></div>
    <div id="AjaxLoading" class="showbox">
     <div class="loadingWord"><img src="../JS/waiting.gif">加载中,请稍候...</div>
    </div>

    第二步:添加CSS样式

       <style type="text/css">
        *{margin:0;padding:0;list-style-type:none;}
        a,img{border:0;}
        .demo{margin:100px auto 0 auto;400px;text-align:center;font-size:18px;}
        .demo .action{color:#3366cc;text-decoration:none;font-family:"微软雅黑","宋体";}
        .overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:998;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{180px;height:50px;line-height:50px;border:2px solid #D6E7F2;background:#fff;}
        #AjaxLoading img{margin:10px 15px;float:left;display:inline;}
        </style>

    第三步:添加JS控制代码

     <script>        

           $(document).ready(function () {            

                 var h = $(document).height();            

                $(".overlay").css({ "height": h });

                $("#btn3").click(function () {                

                         ShowLoading();                             

                         $.post("../ASHX/Course.ashx", { json: s, cid: "1234567" }, function (data, textStatus) {                    

                                alert(data + " status:" + textStatus);                    

                                 HiddenLoading();                

                            })            

                  })

                function ShowLoading() {                

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

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

               }

                function HiddenLoading() {                

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

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

               }

            });            

      </script>

  • 相关阅读:
    View.VISIBLE、INVISIBLE、GONE的区别
    Android中TextView内容过长加省略号
    Android 读取SIM卡参数
    java分布式通信系统(J2EE分布式服务器架构)
    Java分布式处理技术(RMI,JDNI)
    Java分布式缓存框架
    spring
    Apache与Nginx的优缺点比较
    Java如何获取文件编码格式
    java 乱码问题-Dfile.encoding=UTF-8
  • 原文地址:https://www.cnblogs.com/kavilee/p/5032005.html
Copyright © 2020-2023  润新知