sosuke
12-01-2004, 07:30 PM
<html>
<head>
<title>Restart</title>
<script>
var i = 1;
var msgarray = new Array();
msgarray[0] = ".";
msgarray[1] = "..";
msgarray[2] = "...";
msgarray[3] = "....";
msgarray[4] = ".....";
function setText() {
document.getElementById('msgtxt').innerHTML = msgarray[i];
i=i+1;
if(i==5) { i=0; }
testImage("../images/logo.jpg");
}
function testImage(URL) {
var tester=new Image();
tester.onload=load;
tester.onerror=setText;
tester.src=URL;
}
function load() {
top.centerFrame.canvas.location="../htmls/splash.htm";
}
window.setInterval('testImage("../images/logo.jpg")', 1000);
</script>
</head>
<body>
<table width="100%" height="95%" align="center" valign="middle">
<tr>
<td width="50%" height="100%" align="right" valign="middle">
<h3>Please Wait</h3>
</td>
<td width="50%" height="100%" align="left" valign="middle">
<h3 id="msgtxt">.</h3>
</td>
</tr>
</table>
</body>
</html>
Simple enough, checks to see if the image is accessible, I used it to check to see if my server had restarted yet, modify as you wish! Be careful changing it thought its VERY finiky!
Thanks to Willy Duitt and glenngv for the assist!
<head>
<title>Restart</title>
<script>
var i = 1;
var msgarray = new Array();
msgarray[0] = ".";
msgarray[1] = "..";
msgarray[2] = "...";
msgarray[3] = "....";
msgarray[4] = ".....";
function setText() {
document.getElementById('msgtxt').innerHTML = msgarray[i];
i=i+1;
if(i==5) { i=0; }
testImage("../images/logo.jpg");
}
function testImage(URL) {
var tester=new Image();
tester.onload=load;
tester.onerror=setText;
tester.src=URL;
}
function load() {
top.centerFrame.canvas.location="../htmls/splash.htm";
}
window.setInterval('testImage("../images/logo.jpg")', 1000);
</script>
</head>
<body>
<table width="100%" height="95%" align="center" valign="middle">
<tr>
<td width="50%" height="100%" align="right" valign="middle">
<h3>Please Wait</h3>
</td>
<td width="50%" height="100%" align="left" valign="middle">
<h3 id="msgtxt">.</h3>
</td>
</tr>
</table>
</body>
</html>
Simple enough, checks to see if the image is accessible, I used it to check to see if my server had restarted yet, modify as you wish! Be careful changing it thought its VERY finiky!
Thanks to Willy Duitt and glenngv for the assist!