diff options
| author | Niklas | 2011-09-21 16:59:09 +0200 |
|---|---|---|
| committer | Niklas | 2011-09-21 16:59:09 +0200 |
| commit | 3b81d83bf449ef6242489805af15b7da7b197d58 (patch) | |
| tree | 26f78d0c6321a11acccf6418deb557033268a28c /LogReceiver/html/preload.html | |
| parent | the checkConnectivity method is working now. we use the rtnl functions of the... (diff) | |
| download | fbgui-3b81d83bf449ef6242489805af15b7da7b197d58.tar.gz fbgui-3b81d83bf449ef6242489805af15b7da7b197d58.tar.xz fbgui-3b81d83bf449ef6242489805af15b7da7b197d58.zip | |
gui is now html based. still some problems with the jQuery stuff. it does not display anything.
Diffstat (limited to 'LogReceiver/html/preload.html')
| -rw-r--r-- | LogReceiver/html/preload.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/LogReceiver/html/preload.html b/LogReceiver/html/preload.html new file mode 100644 index 0000000..bc0abd9 --- /dev/null +++ b/LogReceiver/html/preload.html @@ -0,0 +1,42 @@ +<html> +<head> +<link rel="stylesheet" type="text/css" href="preload.css"> +<script type="text/javascript"> +//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"> +</div> +<div id="message"> + <h1>Waiting for internet...</h1> +</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>RZ Uni Freiburg, 2011</p> +</div> +</body> +</html> |
