惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
N
Netflix TechBlog - Medium
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
宝玉的分享
宝玉的分享
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
Hugging Face - Blog
Hugging Face - Blog
量子位
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
D
Docker
罗磊的独立博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
Microsoft Azure Blog
Microsoft Azure Blog

博客园 - Cheek G

JQuery常用方法一览 6 bytes !! IE判定 项目小记: IFRAME引起内存泄露的解决方法 - Cheek G wcf中使用Session 整人小程序【转自CSDN】 WF学习日记(一) Asp.net MVC框架学习【收藏】 Web Services 学习【收藏】 输出CSV文件并直接打开时出现SYLK异常 JS 其他(二) - Cheek G JS 其他 - Cheek G JS验证类(一) 非常NB的sql2005分页 web页局部打印 - Cheek G - 博客园 asp.net在ie7中使用FileUpload上传前预览图片 - Cheek G - 博客园 DIV背景半透明,DIV中的字不半透明 - Cheek G - 博客园 js等比例缩放图片 - Cheek G - 博客园 IIS 7 中默认页设置的小问题 文件的ContentType类型 小全
页面加载完成前显示LOADING....
Cheek G · 2008-08-22 · via 博客园 - Cheek G

<html>   
     <head>   
     <title></title>   
     <script type="text/javascript">   
         var url = 'http://www.163.com'; //the Next page you want to display
     </script>   
     <style>   
         .loading-indicator {   
             font-size:8pt;   
             background-image:url(../images/loading/loading.gif);   
             background-repeat: no-repeat;     
             background-position:top left;   
             padding-left:20px;   
             height:18px;   
             text-align:left;   
         }   
         #loading{   
             position:absolute;   
             left:45%;   
             top:40%;   
             border:3px solid #B2D0F7;   
             background:white url(../images/loading/block-bg.gif) repeat-x;   
             padding:10px;   
             font:bold 14px verdana,tahoma,helvetica;   
             color:#003366;   
             width:180px;   
             text-align:center;   
         }   
     </style>   
     <div id="loading">   
         <div class="loading-indicator">   
             Page Loading   
         </div>   
     </div>   
     </head>   
     <body onload="location.href = url;" style="overflow:hidden;overflow-y:hidden">   
     </body>   
     <script>   
        if(document.layers) {   
             document.write('<Layer src="' + url + '" visibility="hide"></Layer>');   
         }   
        else if(document.all || document.getElementById) {    
             document.write('<iframe src="' + url + '" style="visibility:hidden;"></iframe>');   
         }   
        else {   
             location.href = url;   
         }   
     </script>   
</html>

posted @ 2008-08-22 22:42  Cheek G  阅读(1793)  评论()    收藏  举报