diff options
author | Nicolai Tellefsen <niccofyren@gmail.com> | 2016-03-21 20:33:44 +0100 |
---|---|---|
committer | Nicolai Tellefsen <niccofyren@gmail.com> | 2016-03-21 20:33:44 +0100 |
commit | 5ba657e0bca0e4970b08583f6dfc94bfae34741c (patch) | |
tree | 44ed77deecd40ca984aae4bfa1bb949cb87bf7a0 /web/nms-public.gathering.org/old/display.html | |
parent | d528cad67897dd2c3b98ec15a82868ac2764e2c7 (diff) | |
parent | 727e4ab31aa6d1a754711d4cd29dbcefae2e952a (diff) |
Merge branch 'master' of https://github.com/tech-server/tgmanage
Diffstat (limited to 'web/nms-public.gathering.org/old/display.html')
-rwxr-xr-x | web/nms-public.gathering.org/old/display.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/web/nms-public.gathering.org/old/display.html b/web/nms-public.gathering.org/old/display.html new file mode 100755 index 0000000..bb7c174 --- /dev/null +++ b/web/nms-public.gathering.org/old/display.html @@ -0,0 +1,64 @@ +<html>
+ <head>
+ <title>TG15 - The Future Is Back</title>
+ <style type="text/css">
+ body {
+ margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin: 0 auto;
+ }
+
+ #slide {
+ visibility: hidden;
+ position: absolute;
+ bottom: 0px;
+ top: 0px;
+ left: 0px;
+ margin: 0px;
+ overflow-y: hidden;
+ overflow-x: hidden;
+ }
+
+ #subframe {
+ width: 1920px;
+ height: 1080px;
+ }
+ </style>
+ <script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
+ <script type="text/javascript">
+ var page = 0;
+ var iframes = 3;
+ var delay = 10;
+
+ function rotate() {
+ $('body').delay(delay*1000).queue(function(next) {
+ $('div').each(function(i, obj) {
+ if (i == page) {
+ this.style.visibility = 'visible';
+ } else {
+ this.style.visibility = 'hidden';
+ }
+ });
+ next();
+ rotate();
+ });
+ page = (page + 1) % iframes;
+ }
+
+ $(document).ready(function(){
+ rotate();
+ });
+ </script>
+ </head>
+ <body>
+ <div id="slide" style="visibility: visible;">
+ <iframe class="frames" id="subframe" frameborder="0" src="http://nms.tg15.gathering.org/observium.html" scrolling="no"></iframe>
+ </div>
+
+ <div id="slide">
+ <iframe class="frames" id="subframe" frameborder="0" src="http://nms.tg15.gathering.org/ping.html" scrolling="no"></iframe>
+ </div>
+
+ <div id="slide">
+ <iframe class="frames" id="subframe" frameborder="0" src="http://nms.tg15.gathering.org/dhcpkart.pl" scrolling="no"></iframe>
+ </div>
+ </body>
+</html>
|