summaryrefslogtreecommitdiffstats
path: root/src/html/loadsystem.html
diff options
context:
space:
mode:
authorNiklas2011-06-28 10:51:08 +0200
committerNiklas2011-06-28 10:51:08 +0200
commit2842ca3160966ed1633f9d6605531e18b435de61 (patch)
treed705e55b3307985da28307e24b7ac33a0e024cce /src/html/loadsystem.html
parentadded the networkDiscovery project into a new workspace folder (diff)
parentbuild.sh dummy (diff)
downloadfbgui-2842ca3160966ed1633f9d6605531e18b435de61.tar.gz
fbgui-2842ca3160966ed1633f9d6605531e18b435de61.tar.xz
fbgui-2842ca3160966ed1633f9d6605531e18b435de61.zip
Merge branch 'master' of git.openslx.org:lsfks/projekte/fbgui
Diffstat (limited to 'src/html/loadsystem.html')
-rw-r--r--src/html/loadsystem.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/html/loadsystem.html b/src/html/loadsystem.html
new file mode 100644
index 0000000..838423e
--- /dev/null
+++ b/src/html/loadsystem.html
@@ -0,0 +1,35 @@
+<html>
+<head>
+<link rel="stylesheet" type="text/css" href="loadsystem.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="message">
+ <h1>Loading system, please wait...</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>
+</body>
+</html>