index.html 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <!DOCTYPE html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  4. <title>日志</title>
  5. <script type="text/javascript" src="/js/jquery.min.js" crossorigin="anonymous"></script>
  6. <link rel="stylesheet" href="/css/bootstrap.min.css" crossorigin="anonymous">
  7. <script type="text/javascript" src="/js/bootstrap.min.js" crossorigin="anonymous"></script>
  8. <link rel="stylesheet" href="/css/style.css">
  9. <link rel="preconnect" href="https://fonts.gstatic.com">
  10. <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
  11. &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  12. <style>
  13. * {
  14. transition-duration: 300ms;
  15. }
  16. .btn {
  17. text-shadow: rgb(133, 133, 130) 1px 2px 3px;
  18. }
  19. .btn-xs.dark {
  20. background-color: rgb(70, 59, 150);
  21. color: white;
  22. }
  23. .btn-info.dark {
  24. color: #fff;
  25. background-color: #027396;
  26. border-color: #46b8da;
  27. }
  28. code.dark {
  29. background-color: rgb(70, 59, 150);
  30. }
  31. .noshadow {
  32. text-shadow: none;
  33. }
  34. .dark ::selection {
  35. color: white;
  36. text-decoration: underline wavy #FF3028;
  37. text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
  38. background-color: black;
  39. }
  40. .dark {
  41. color: white;
  42. background-color: black;
  43. }
  44. .btn-dang {
  45. transition-duration: 1000ms;
  46. }
  47. .btn-dang.dark {
  48. outline: 10px transparent
  49. }
  50. .btn-dang:is(:hover, :hover:focus) {
  51. outline: 15px solid rgba(58, 58, 58, 0.8)
  52. }
  53. .btn-dang.dark:hover {
  54. outline: 4000px solid rgba(0, 0, 0, 0.1)
  55. }
  56. .btn-dang:is(:hover:active:focus, :active) {
  57. scale: 80%;
  58. transform: translate(-7px, -7px);
  59. outline: 150px double rgba(162, 6, 6, 0.5)
  60. }
  61. hr {
  62. overflow: visible;
  63. /* For IE */
  64. padding: 0;
  65. border: none;
  66. border-top: medium double #333;
  67. color: #333;
  68. text-align: center;
  69. }
  70. hr.dark:after {
  71. scale: 0;
  72. transition-delay: 0s;
  73. transition-duration: 100ms;
  74. }
  75. hr:after {
  76. transition-duration: 300ms;
  77. content: "§";
  78. display: inline-block;
  79. position: relative;
  80. top: -0.7em;
  81. font-size: 1.5em;
  82. padding: 0 0.25em;
  83. background: floralwhite;
  84. transition-delay: 1s;
  85. }
  86. hr.dark {
  87. border-top: medium double rgb(70, 59, 150);
  88. color: rgb(70, 59, 150);
  89. }
  90. </style>
  91. <script>
  92. $().ready(function () {
  93. $('.btn-danger').on('click', function (e) {
  94. $('body,.btn,.btn-xs,code,pre,hr').toggleClass('dark')
  95. console.log(e)
  96. })
  97. fetch('data.json', {
  98. method: 'GET',
  99. headers: {
  100. 'Content-type': 'application/json',
  101. }
  102. }).then(res => {
  103. res.json().then(resj => {
  104. var d = resj.content;
  105. for (var i = d.length - 1; i >= 0; i--) {
  106. $('.main').append(d[i])
  107. }
  108. });
  109. })
  110. dat = new Date();
  111. dat.setHours(dat.getHours() + 8)
  112. $('#new').text(dat.toISOString().split('T')[0].replace(/-/g, '.'))
  113. })
  114. function upload(str, small) {
  115. str = '<p>' + str.replace(/\n/g, '</p><p>') + '</p>'
  116. str = `<h3 id='${dat.toISOString().split('T')[0].replace(/-/g, '.').slice(2)}'>${dat.toISOString().split('T')[0].replace(/-/g, '.')} <small>${small}</small></h3>${str}`
  117. str += '<hr>'
  118. console.log(str)
  119. if (!str) alert('no')
  120. fetch('/log', {
  121. method: 'POST',
  122. headers: {
  123. 'Content-type': 'application/json',
  124. },
  125. body: JSON.stringify({ content: str })
  126. }).then(res => {
  127. res.text().then(resj => {
  128. if (resj == 'ok') {
  129. console.log('ok!')
  130. $('.uploadIndicator').removeClass('glyphicon-cloud-upload')
  131. $('.uploadIndicator').addClass('glyphicon-ok')
  132. location.reload();
  133. }
  134. });
  135. })
  136. }
  137. </script>
  138. </head>
  139. <body>
  140. <a class="btn btn-info" href="/"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>&nbsp;返回</a>
  141. <div class="page-header">
  142. <h1>网站日志
  143. <button class="btn btn-default noshadow" onclick="$('.add').toggle();$(this).children().toggleClass('glyphicon-arrow-down')"><span
  144. class="glyphicon glyphicon-plus"></span></button>
  145. </h1>
  146. </div>
  147. <div class="add" style="display: none;">
  148. <h3 id='new'>d</h3>
  149. <div class="input-group">
  150. <input id="smallInput" type="text" class="form-control" autocomplete="off" placeholder="title">
  151. <textarea id="chatInput" type="text" class="form-control" autocomplete="off" style="resize:vertical"
  152. placeholder="content"></textarea>
  153. <span class="input-group-btn">
  154. <button type="button" class="btn btn-default noshadow"
  155. onclick="upload($('#chatInput').val(),$('#smallInput').val())" id="chatBtn"><span
  156. class="uploadIndicator glyphicon glyphicon-cloud-upload"></span></button>
  157. </span>
  158. </div>
  159. <hr>
  160. </div>
  161. <div class="main"></div>
  162. <hr>
  163. <p><button class="btn btn-danger btn-dang"><span class="glyphicon glyphicon-off" aria-hidden="true"></span></button>
  164. </p>
  165. <pre style="font-family: 'Courier New';font-size: 10pt;white-space: pre;margin: 1em 0px;line-height: 10pt;">
  166. .▄▄ · ▄▄· ▄ .▄▄▄▄▄▄ ▐ ▄ ▐ ▄
  167. ▐█ ▀. ▐█ ▌▪██▪▐█•██ ▪ •█▌▐█•█▌▐█
  168. ▄▀▀▀█▄██ ▄▄██▀▐█ ▐█.▪ ▄█▀▄ ▐█▐▐▌▐█▐▐▌
  169. ▐█▄▪▐█▐███▌██▌▐▀ ▐█▌·▐█▌.▐▌██▐█▌██▐█▌
  170. ▀▀▀▀ ·▀▀▀ ▀▀▀ · ▀▀▀ ▀█▄▀▪▀▀ █▪▀▀ █▪
  171. </pre>
  172. <a href="/a.log" style="color:floralwhite">(真正的日志)</a>
  173. </body>