HTML一个极其简单实用的浏览器加载效果

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>加载效果demo</title>
  <!--引入jQuery-->
  <script src="http://apps.bdimg.com/libs/jquery/1.8.3/jquery.js"></script>
  <style>
    #tipDiv{
        display:none;
        position: absolute;
        left: 39%;
        top: 230px;
        z-index: 9999;
        background: #d9d9d9;
        padding: 10px;
        border-radius: 5px;
    }
    #tipInfo{
        margin-top: 10px;
    }
  </style>
 </head>
 <body>
  <!--主要的div 使用的时候把这段引用到自己的界面中-->
  <div id="tipDiv">
    <center><img style="width:25px;" src="http://img.lanrentuku.com/img/allimg/1212/5-121204193R5-50.gif"></center>
    <div id="tipInfo"></div>
  </div>
 
  <script type="text/javascript">
    //显示提示
    function showTip(info){
        $('#tipInfo').html(info);
        $('#tipDiv').show();
    }
    //初始加载提示
    showTip('内容正在加载...');
    //关闭提示
    function closeTip(){
        $('#tipDiv').hide();
    }
  </script>
 </body>
</html>

来自微信公众号:编程社

程序员日常进阶宝典,欢迎关注!

 

 

posted on 2019-09-02 20:09  黑夜开发者  阅读(656)  评论(0编辑  收藏  举报