PHP群:95885625 Hbuilder+MUI群:81989597 站长QQ:634381967
    您现在的位置: 首页 > 开发编程 > Jquery教程 > 正文

    jquery 加载中效果代码分享

    作者:admin来源:网络浏览:时间:2020-09-30 00:07:50我要评论
    导读:jquery 加载中效果代码分享。
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <script type="text/javascript" src="http://blog.163.com/llghlqm@126/blog/jquery.js"></script>
    </head>
    <body>
    <style>
    #loading{
        width:150px;
        height:25px;
        border:1px solid #000;
        border-top:none;
        background-color:#FFC;
        
        position:absolute;
        top:0px;
        left:50%;
        margin-left:-75px;
        
        text-align:center;
        line-height:25px;
        font-size:12px;
        font-weight:bold;
        color:#F00;
    }
    </style>
    <div id="loading">…页面加载中…</div>
    <script>
    $(function(){
        $('#loading').fadeOut();
    })
    </script>

    后面就是你的代码了。
    </body>
    </html>
    转载请注明(B5教程网)原文链接:https://b5.mxunkeji.com/content-47-459-1.html
    相关热词搜索: jquery 加载