setting.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!-- Standard Meta -->
  5. <meta charset="utf-8" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
  8. <!-- Site Properties -->
  9. <title>Minecraft Server</title>
  10. <script src="https://code.jquery.com/jquery-3.1.1.min.js" crossorigin="anonymous"></script>
  11. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css">
  12. <script src="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.js"></script>
  13. <style>
  14. html {
  15. overflow: hidden;
  16. height: 100%;
  17. }
  18. body {
  19. background-color: #fcfcfc;
  20. overflow: hidden !important;
  21. height: 100%;
  22. }
  23. iframe {
  24. border: none;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="ui top attached tabular menu">
  30. <a class="item active" data-tab="1">Ban IP</a>
  31. <a class="item" data-tab="2">Ban Player</a>
  32. <a class="item" data-tab="3">OP</a>
  33. <a class="item" data-tab="4">Properties</a>
  34. <a class="item" data-tab="5">Whitelist</a>
  35. <a class="item" data-tab="6">EULA</a>
  36. </div>
  37. <div class="ui bottom attached tab segment active" style="height:100%;width:100%" data-tab="1">
  38. <iframe src="/setting/banip.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
  39. </div>
  40. <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="2">
  41. <iframe src="/setting/banplayer.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
  42. </div>
  43. <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="3">
  44. <iframe src="/setting/ops.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
  45. </div>
  46. <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="4">
  47. <iframe src="/setting/properties.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
  48. </div>
  49. <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="5">
  50. <iframe src="/setting/whitelist.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
  51. </div>
  52. <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="6">
  53. <iframe src="/setting/eula.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
  54. </div>
  55. <script>
  56. $('.menu .item')
  57. .tab();
  58. </script>
  59. </body>
  60. </html>