main.html 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <!--360浏览器优先以webkit内核解析-->
  7. <title>介绍</title>
  8. <link rel="shortcut icon" href="favicon.ico">
  9. <link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
  10. <link href="../static/css/font-awesome.min.css" th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/>
  11. <link href="../static/css/style.min.css" th:href="@{/css/style.min.css}" rel="stylesheet"/>
  12. <style>
  13. ul,li,img,h4,a{
  14. padding: 0;
  15. margin: 0;
  16. font-weight: normal;
  17. list-style: none;
  18. text-decoration: none;
  19. }
  20. .jilinKsh{
  21. width: 80%;
  22. margin: 0 auto;
  23. display: flex;
  24. flex-direction: row;
  25. flex-wrap:wrap;
  26. justify-content:space-between;
  27. }
  28. .jilinKsh li{
  29. width: 25%;
  30. margin:30px 0 0 0;
  31. }
  32. .jilinKsh li a{
  33. display: block;
  34. width: 90%;
  35. background: #fff;
  36. border-radius: 20px;
  37. padding:30px 0 50px 0;
  38. text-align: center;
  39. }
  40. .jilinKsh li a img{
  41. display: block;
  42. width: 25%;
  43. margin: 0 auto 20px auto;
  44. }
  45. .jilinKsh li a h4{
  46. font-size: 18px;
  47. color: #333;
  48. }
  49. </style>
  50. </head>
  51. <body class="gray-bg" style="background:#f3f3f4">
  52. <ul class="jilinKsh">
  53. <li id="clickOne">
  54. <a href="http://localhost:16006/usability">
  55. <img src="/img/zbjc.png">
  56. <h4>网站可用性实时监测</h4>
  57. </a>
  58. </li>
  59. <li id="clickTwo">
  60. <a href="http://localhost:16006/websiteAccess">
  61. <img src="/img/fwl.png">
  62. <h4>网站访问情况监测</h4>
  63. </a>
  64. </li>
  65. <li id="clickThree">
  66. <a href="http://localhost:16006/misunderstanding">
  67. <img src="/img/cbz.png">
  68. <h4>网站错别字监测</h4>
  69. </a>
  70. </li>
  71. <li id="clickFour">
  72. <a href="http://localhost:16006/staggeredChain">
  73. <img src="/img/cl.png">
  74. <h4>网站错误链接监测</h4>
  75. </a>
  76. </li>
  77. <li id="clickFive">
  78. <a href="http://localhost:16006/censusIndicators">
  79. <img src="/img/zbjc.png">
  80. <h4>网站普查指标监测</h4>
  81. </a>
  82. </li>
  83. <li id="clickSix">
  84. <a href="http://localhost:16006/dailyUpdateVolume">
  85. <img src="/img/gx.png">
  86. <h4>网站日更新量排行监测</h4>
  87. </a>
  88. </li>
  89. <li id="clickSeven">
  90. <a href="http://localhost:16006/dailyVisits">
  91. <img src="/img/fwl.png">
  92. <h4>网站日访问量排行监测</h4>
  93. </a>
  94. </li>
  95. <li id="clickEight">
  96. <a href="http://localhost:16006/InteractiveColumns">
  97. <img src="/img/lmgx.png">
  98. <h4>网站互动类栏目更新监测</h4>
  99. </a>
  100. </li>
  101. </ul>
  102. <script th:src="@{/js/jquery.min.js}"></script>
  103. <script th:src="@{/js/bootstrap.min.js}"></script>
  104. <script th:src="@{/ajax/libs/layer/layer.min.js}"></script>
  105. <script type="text/javascript">
  106. $('#pay-qrcode').click(function () {
  107. var html = $(this).html();
  108. parent.layer.open({
  109. title: false,
  110. type: 1,
  111. closeBtn: false,
  112. shadeClose: true,
  113. area: ['600px', '360px'],
  114. content: html
  115. });
  116. });
  117. </script>
  118. <script>
  119. var clickOne = document.getElementById("clickOne");
  120. clickOne.addEventListener("click", function(event) {
  121. event.preventDefault(); // 阻止默认的链接跳转行为
  122. var link = clickOne.querySelector("a");
  123. var href = link.getAttribute("href");
  124. window.open(href, "_blank"); // 在新的标签页中打开链接
  125. });
  126. var clickTwo = document.getElementById("clickTwo");
  127. clickTwo.addEventListener("click", function(event) {
  128. event.preventDefault(); // 阻止默认的链接跳转行为
  129. var link = clickTwo.querySelector("a");
  130. var href = link.getAttribute("href");
  131. window.open(href, "_blank"); // 在新的标签页中打开链接
  132. });
  133. var clickThree = document.getElementById("clickThree");
  134. clickThree.addEventListener("click", function(event) {
  135. event.preventDefault(); // 阻止默认的链接跳转行为
  136. var link = clickThree.querySelector("a");
  137. var href = link.getAttribute("href");
  138. window.open(href, "_blank"); // 在新的标签页中打开链接
  139. });
  140. var clickFour = document.getElementById("clickFour");
  141. clickFour.addEventListener("click", function(event) {
  142. event.preventDefault(); // 阻止默认的链接跳转行为
  143. var link = clickFour.querySelector("a");
  144. var href = link.getAttribute("href");
  145. window.open(href, "_blank"); // 在新的标签页中打开链接
  146. });
  147. var clickFive = document.getElementById("clickFive");
  148. clickFive.addEventListener("click", function(event) {
  149. event.preventDefault(); // 阻止默认的链接跳转行为
  150. var link = clickFive.querySelector("a");
  151. var href = link.getAttribute("href");
  152. window.open(href, "_blank"); // 在新的标签页中打开链接
  153. });
  154. var clickSix = document.getElementById("clickSix");
  155. clickSix.addEventListener("click", function(event) {
  156. event.preventDefault(); // 阻止默认的链接跳转行为
  157. var link = clickSix.querySelector("a");
  158. var href = link.getAttribute("href");
  159. window.open(href, "_blank"); // 在新的标签页中打开链接
  160. });
  161. var clickSeven = document.getElementById("clickSeven");
  162. clickSeven.addEventListener("click", function(event) {
  163. event.preventDefault(); // 阻止默认的链接跳转行为
  164. var link = clickSeven.querySelector("a");
  165. var href = link.getAttribute("href");
  166. window.open(href, "_blank"); // 在新的标签页中打开链接
  167. });
  168. var clickEight = document.getElementById("clickEight");
  169. clickEight.addEventListener("click", function(event) {
  170. event.preventDefault(); // 阻止默认的链接跳转行为
  171. var link = clickEight.querySelector("a");
  172. var href = link.getAttribute("href");
  173. window.open(href, "_blank"); // 在新的标签页中打开链接
  174. });
  175. </script>
  176. </body>
  177. </html>