現在比較流行的一款Ajax風格的網頁Loading,多見於一些大量使用Ajax技術的網站中,頁面載入時會自動顯示提示資訊,帶載入動畫效果,網頁載入完自動消失,是一款正在具有Loading功能的網頁進度條。
<html></p><P><head><title>Loading</title><style type="text/css">body{background-color:#000;}#content{display:none;}#loadbox{position:absolute;top:50%;left:50%;margin-left:-68px;margin-top:-36px;width:222px;height:58px;text-align:center;}#loadbox span{display:block;width:222px;height:32px;text-align:center;color:#CCC;font-size:9pt;}</style><script type="text/javascript">document.write('<div id="loadbox"><span>頁面載入中,請稍候……</span></div>');window.onload = function(){ document.getElementById('loadbox').style.display="none";document.getElementById('content').style.display="block";} </script></head><body><div id="content"><iframe src="#" width="800" height="360" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe></div></body></html>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]