diff options
Diffstat (limited to 'src/html/loadsystem.html')
| -rw-r--r-- | src/html/loadsystem.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/html/loadsystem.html b/src/html/loadsystem.html new file mode 100644 index 0000000..f01ba5b --- /dev/null +++ b/src/html/loadsystem.html @@ -0,0 +1,43 @@ +<html> +<head> +<link rel="stylesheet" type="text/css" href="loadsystem.css"> +<script type="text/javascript"> +function gogo(){ + fbgui.trigger(); +} +//simple script to rotate all spinners 45 degrees on each tick +//this works differently from the css transforms, which is smooth +var count = 0; +function rotate() { + var elem4 = document.getElementById('div4'); + elem4.style.MozTransform = 'scale(0.5) rotate('+count+'deg)'; + elem4.style.WebkitTransform = 'scale(0.5) rotate('+count+'deg)'; + if (count==360) { count = 0 } + count+=45; + window.setTimeout(rotate, 100); +} +window.setTimeout(rotate, 100); +</script> +</head> +<body> +<div id="top"> + <p>Loading system, please wait...</p> +</div> +<div id="div4"> + <div class="bar1"></div> + <div class="bar2"></div> + <div class="bar3"></div> + <div class="bar4"></div> + <div class="bar5"></div> + <div class="bar6"></div> + <div class="bar7"></div> + <div class="bar8"></div> +</div> +<div id="container"> + <div id="footer-spacer"></div> +</div> +<div id="footer"> +<p>This might take a few minutes...</p> +</div> +</body> +</html> |
