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

推荐订阅源

S
SegmentFault 最新的问题
Spread Privacy
Spread Privacy
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
SecWiki News
SecWiki News
腾讯CDC
P
Privacy International News Feed
Webroot Blog
Webroot Blog
J
Java Code Geeks
爱范儿
爱范儿
A
About on SuperTechFans
S
Secure Thoughts
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
D
DataBreaches.Net
Cloudbric
Cloudbric
Security Archives - TechRepublic
Security Archives - TechRepublic
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Cyber Attacks, Cyber Crime and Cyber Security
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Security Latest
Security Latest
Forbes - Security
Forbes - Security
小众软件
小众软件
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
T
Threatpost
量子位
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
W
WeLiveSecurity
P
Privacy & Cybersecurity Law Blog
Vercel News
Vercel News
Google Online Security Blog
Google Online Security Blog
云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
S
Security @ Cisco Blogs
T
The Exploit Database - CXSecurity.com
Help Net Security
Help Net Security
V
Visual Studio Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
Application and Cybersecurity Blog
Application and Cybersecurity Blog
博客园 - 聂微东
P
Proofpoint News Feed
C
CERT Recently Published Vulnerability Notes
Attack and Defense Labs
Attack and Defense Labs

博客园 - 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)  评论()    收藏  举报