zoukankan      html  css  js  c++  java
  • 基于jquery的页面预载入效果(loading)

    css代码:

    <style>
        #loading{
            position:absolute;
            width:300px;
            top:0px;
            left:50%;
            margin-left:-150px;
            text-align:center;
            padding:7px 0 0 0;
            font:bold 11px Arial, Helvetica, sans-serif;
        }
    </style>

    html代码:

    <div id="loading">Loading content, please wait..<img src="loading.gif" mce_src="loading.gif" alt="loading.." /></div>

    jquery:

    <script>
        $(window).load(function(){
            $("#loading").hide();
        })
    </script>
  • 相关阅读:
    杭电1827
    hdu 3118
    poj 2060
    hdu 2236
    poj 2226
    poj 1719
    poj 1466
    poj 3160
    骑士飞行棋笔记
    基础测试学习笔记
  • 原文地址:https://www.cnblogs.com/phpfensi/p/4476765.html
Copyright © 2011-2022 走看看