diff options
| author | Sebastian Schmelzer | 2011-12-01 12:32:58 +0100 |
|---|---|---|
| committer | Sebastian Schmelzer | 2011-12-01 12:32:58 +0100 |
| commit | fd0d62cc9aebb48fae6d98c6edfe2580b42327da (patch) | |
| tree | 2352311d0c3254ef34c73f55624462bcc79bfab7 /src/html/loadsystem.html | |
| parent | minor changes (diff) | |
| parent | den pfad zur common header file angepasst (diff) | |
| download | fbgui-fd0d62cc9aebb48fae6d98c6edfe2580b42327da.tar.gz fbgui-fd0d62cc9aebb48fae6d98c6edfe2580b42327da.tar.xz fbgui-fd0d62cc9aebb48fae6d98c6edfe2580b42327da.zip | |
merge with master-team-project
Diffstat (limited to 'src/html/loadsystem.html')
| -rw-r--r-- | src/html/loadsystem.html | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/html/loadsystem.html b/src/html/loadsystem.html deleted file mode 100644 index 838423e..0000000 --- a/src/html/loadsystem.html +++ /dev/null @@ -1,35 +0,0 @@ -<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> |
