index.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <!DOCTYPE html>
  2. <html lang="ch-zh">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon" />
  8. <link rel="stylesheet" href="./css/reset.css" />
  9. <link rel="stylesheet" href="./css/main.css" />
  10. <title>-</title>
  11. </head>
  12. <style>
  13. .myTitle {
  14. letter-spacing: 4px;
  15. margin: 0 auto;
  16. color: #fff;
  17. display: flex;
  18. font-size: 20px;
  19. justify-content: center;
  20. align-items: center;
  21. width: 270px;
  22. height: 50px;
  23. background: url("./img/titleBac.png") no-repeat center;
  24. background-size: 100% 100%;
  25. }
  26. .options {
  27. display: flex;
  28. justify-content: space-between;
  29. margin: 20px auto;
  30. width: 300px;
  31. }
  32. .btn {
  33. width: 120px;
  34. height: 35px;
  35. border-radius: 10px;
  36. box-shadow: none;
  37. border: 1px solid #9d917f;
  38. background: #ffffff21;
  39. color: white;
  40. font-size: 14px;
  41. }
  42. .active {
  43. background: #ffffff21;
  44. }
  45. .containers {
  46. padding-top: 40px;
  47. width: 100vw;
  48. box-sizing: border-box;
  49. height: 100vh;
  50. background-color: #285b5e;
  51. }
  52. .pageBox {
  53. position: fixed;
  54. z-index: 99;
  55. right: 20px;
  56. top: 10px;
  57. display: flex;
  58. }
  59. .pageBox > div {
  60. width: 24px;
  61. height: 24px;
  62. background-color: #fff;
  63. cursor: pointer;
  64. margin-left: 15px;
  65. line-height: 24px;
  66. text-align: center;
  67. border-radius: 5px;
  68. border: 1px solid #ccc;
  69. }
  70. .pageBox > div:hover {
  71. background-color: #285b5e;
  72. color: #fff;
  73. }
  74. .pageBox .active {
  75. pointer-events: none;
  76. background-color: #285b5e;
  77. color: #fff;
  78. }
  79. </style>
  80. <body>
  81. <div class="containers">
  82. <div class="myTitle"></div>
  83. <ul class="con"></ul>
  84. </div>
  85. <script src="./info.js"></script>
  86. <script src="js/jquery.js"></script>
  87. <script src="js/ui.js"></script>
  88. <script>
  89. document.title = titleInfo;
  90. $(".myTitle").text(titleInfo);
  91. </script>
  92. </body>
  93. </html>