12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!DOCTYPE html>
- <html>
- <head>
- <!-- Standard Meta -->
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
- <!-- Site Properties -->
- <title>Minecraft Server</title>
- <script src="https://code.jquery.com/jquery-3.1.1.min.js" crossorigin="anonymous"></script>
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css">
- <script src="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.js"></script>
- <style>
- html {
- overflow: hidden;
- height: 100%;
- }
-
- body {
- background-color: #fcfcfc;
- overflow: hidden !important;
- height: 100%;
- }
-
- iframe {
- border: none;
- }
- </style>
- </head>
- <body>
- <div class="ui top attached tabular menu">
- <a class="item active" data-tab="1">Info</a>
- <a class="item" data-tab="2">Players</a>
- <a class="item" data-tab="3">Start</a>
- <a class="item" data-tab="4">Log</a>
- <a class="item" data-tab="5">Setting</a>
- </div>
- <div class="ui bottom attached tab segment active" style="height:100%;width:100%" data-tab="1">
- <iframe src="info.html" style="height:100%;width:100%" title=""></iframe>
- </div>
- <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="2">
- <iframe src="players.html" style="height:100%;width:100%" title=""></iframe>
- </div>
- <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="3">
- <iframe src="start.html" style="height:100%;width:100%" title=""></iframe>
- </div>
- <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="4">
- <iframe src="log.html" style="height:100%;width:100%" title=""></iframe>
- </div>
- <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="5">
- <iframe src="setting.html" style="height:100%;width:100%" title=""></iframe>
- </div>
- <script>
- $('.menu .item')
- .tab();
- </script>
- </body>
- </html>
|