summaryrefslogtreecommitdiffstats
path: root/LogReceiver/html/preload.html
diff options
context:
space:
mode:
Diffstat (limited to 'LogReceiver/html/preload.html')
-rw-r--r--LogReceiver/html/preload.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/LogReceiver/html/preload.html b/LogReceiver/html/preload.html
deleted file mode 100644
index bc0abd9..0000000
--- a/LogReceiver/html/preload.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<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>