index.html 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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="preconnect" href="https://fonts.gstatic.com">
  9. <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
  10. &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  11. <link rel="stylesheet" href="/css/style.css">
  12. <!-- <link rel="stylesheet" href="/css/style.css"> -->
  13. <style>
  14. *:not(svg, path, g) {
  15. transition-duration: 300ms;
  16. }
  17. /* https://i.328888.xyz/2022/12/23/Dn9eo.jpeg */
  18. .btn {
  19. text-shadow: rgb(133, 133, 130) 1px 2px 3px;
  20. transition-duration: 100ms;
  21. transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  22. }
  23. .btn:not(.btn-sm) {
  24. margin-top: 5px;
  25. }
  26. /* .btn:hover {
  27. text-shadow: rgb(33, 33, 30, 0.8) 3px 3px 5px;
  28. transform: rotate(2deg) translate(-2px, -4px);
  29. } */
  30. #random:hover {
  31. text-shadow: -3px -3px 3px rosybrown, 3px 3px 3px royalblue, 3px -3px 5px whitesmoke, -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
  32. }
  33. #paint:hover {
  34. text-shadow: -3px -3px 3px rgb(95, 192, 150), 3px 3px 3px rgb(131, 221, 226), 3px -3px 5px rgb(151, 124, 225), -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
  35. }
  36. #chess:hover {
  37. text-shadow: rgb(13, 13, 10, 0.8) -1px -2px 3px, whitesmoke 1px 2px 3px, whitesmoke -1px 2px 3px;
  38. }
  39. #gravity:hover {
  40. text-shadow: seagreen -1px -2px 3px, grey 1px 2px 3px, whitesmoke -1px 2px 3px;
  41. }
  42. img {
  43. border: 3px dotted grey;
  44. width: 300px;
  45. }
  46. .btn.nohover:hover {
  47. transform: none;
  48. outline: none;
  49. text-shadow: none;
  50. }
  51. body {
  52. background: url('../fun/chat/ai-game/1/duck.png'), #f88;
  53. background-blend-mode: screen
  54. }
  55. .btn {
  56. position: relative;
  57. top: 0px;
  58. transition: all 0.2s;
  59. }
  60. .btn:hover {
  61. top: -2px;
  62. }
  63. .btn:active {
  64. top: 5px;
  65. }
  66. svg {
  67. margin-top: 1rem;
  68. width: 30vmin;
  69. height: auto;
  70. filter: url(#shadow-large);
  71. }
  72. </style>
  73. <script src='https://cdnjs.cloudflare.com/ajax/libs/animejs/2.2.0/anime.min.js'></script>
  74. <script>
  75. const zeroPadded = number => ((number >= 10) ? number.toString() : `0${number}`);
  76. const twelveClock = (twentyFourClock) => {
  77. if (twentyFourClock === 0) {
  78. return 12;
  79. } if (twentyFourClock > 12) {
  80. return twentyFourClock - 12;
  81. }
  82. return twentyFourClock;
  83. };
  84. var tot = 0;
  85. function getTime() {
  86. setTimeout(() => {
  87. var click = new Audio('clock.mp3');
  88. click.volume = .3;
  89. click.preload = true;
  90. click.play();
  91. }, 900);
  92. var now = new Date();
  93. var hours = now.getHours();
  94. var minutes = now.getMinutes();
  95. if (now.getSeconds() == 0) tot++;
  96. console.log(tot, now.getSeconds())
  97. var seconds = now.getSeconds() + tot * 60;
  98. var time = {
  99. hours: twelveClock(hours), // 1-12
  100. minutes, // 0-59
  101. seconds, // 0-59
  102. };
  103. var rotation = {
  104. hours: twelveClock(hours),
  105. minutes,
  106. seconds,
  107. };
  108. var entries = Object.entries(time);
  109. entries.forEach(([key, value]) => {
  110. console.log((key === 'hours') ? `rotate(${-15 + value * 30})` : `rotate(${value * 6})`)
  111. anime({
  112. targets: `g.${key}`,
  113. transform: (key === 'hours') ? `rotate(${-15 + value * 30})` : `rotate(${value * 6})`,
  114. duration: 400,
  115. });
  116. });
  117. }
  118. $().ready(function () {
  119. const clockFace = $('svg g.clock--face')[0];
  120. for (let i = 0; i < 12; i += 1) {
  121. clockFace.innerHTML += `<text transform="rotate(${-90 + 30 * (i + 1)}) translate(34 0) rotate(${90 - 30 * (i + 1)})" >${zeroPadded(i + 1)}</text>`;
  122. }
  123. getTime();
  124. setInterval(getTime, 1000);
  125. })
  126. </script>
  127. </head>
  128. <body>
  129. <a class="btn btn-info" href="/"><span class="glyphicon glyphicon-home"></span>&nbsp;返回</a>
  130. <div class="page-header">
  131. <h2>> 娱乐 <small>首页放不下了,根目录也太挤了,再有千奇百怪的想法我都往这扔</small></h2>
  132. </div>
  133. <div>
  134. <a class="btn btn-warning" href="core/">Core</a>
  135. <div class="btn-group">
  136. <button type="button" class="btn btn-warning dropdown-toggle" data-toggle="dropdown">sans&nbsp;<span
  137. class="caret"></span></button>
  138. <ul class="dropdown-menu">
  139. <li><a href="sans/">sans</a></li>
  140. <li><a href="sans-cheat/"><span class="glyphicon glyphicon-wrench"></span>&nbsp;&nbsp;sans</a></li>
  141. </ul>
  142. </div>
  143. <a class="btn btn-info" id="random" href="random/"><span
  144. class="glyphicon glyphicon-random"></span>&nbsp;&nbsp;random</a>
  145. <a class="btn btn-success" id="paint" href="/paint/"><span
  146. class="glyphicon glyphicon-pencil"></span>&nbsp;&nbsp;绘画板</a>
  147. <a class="btn btn-success" id="chess" href="/chess/"><span
  148. class="glyphicon glyphicon-record"></span>&nbsp;&nbsp;五子棋</a>
  149. <a class="btn btn-info" id="gravity" href="gravity/"><span
  150. class="glyphicon glyphicon-magnet"></span>&nbsp;&nbsp;引力</a>
  151. <a class="btn btn-warning" id="raytrack" href="raytrace/"><span
  152. class="glyphicon glyphicon-certificate"></span>&nbsp;&nbsp;1k光追</a>
  153. <a class="btn btn-info" id="article" href="article/"><span
  154. class="glyphicon glyphicon-book"></span>&nbsp;&nbsp;一些好玩的文章</a>
  155. <a class="btn btn-info" id="music" href="music/"><span class="glyphicon glyphicon-music"
  156. ></span>&nbsp;&nbsp;音乐</a>
  157. <a class="btn btn-info" id="test" href="test/"><span
  158. class="glyphicon glyphicon-transfer"></span>&nbsp;&nbsp;Websocket 测试</a>
  159. <a class="btn btn-info" id="chat" href="chat/"><span
  160. class="glyphicon glyphicon-comment"></span>&nbsp;&nbsp;ChatGPT 测试</a>
  161. <a class="btn btn-success" id="gravity" href="https://太帅了.cn" title="中国人不懂浪漫,这么好的域名让我注册了"><span
  162. class="glyphicon glyphicon-link"></span>&nbsp;&nbsp;太帅了.cn</a>
  163. <a class="btn btn-success" href="/minecraft">Minecraft</a>
  164. <a class="btn btn-info" id="raytrack" href="solar/"><span
  165. class="glyphicon glyphicon-globe"></span>&nbsp;&nbsp;真实比例太阳系</a>
  166. <div style="text-align:right">
  167. <span class="btn btn-xs btn-warning nohover">纯搬运</span> - <span
  168. class="btn btn-xs btn-info nohover">小工程</span> -
  169. <span class="btn btn-xs btn-success nohover">大工程</span>
  170. </div>
  171. </div>
  172. <hr>
  173. <p>(自我提醒,不要在这浪费太多时间)</p>
  174. <svg viewBox="0 0 100 100" width="100" height="100">
  175. <defs>
  176. <filter id="shadow-large">
  177. <feDropShadow dx="0" dy="0" stdDeviation="4" />
  178. </filter>
  179. <filter id="shadow-small">
  180. <feDropShadow dx="0" dy="0" stdDeviation="0.2" />
  181. </filter>
  182. <mask id="mask">
  183. <g transform="translate(50 50)">
  184. <g class="hours" transform="rotate(-15)">
  185. <circle cx="0" cy="0" r="50" fill="#fff"> </circle>
  186. <path d="M 0 -50 v 50 l 28.86 -50" fill="#000"> </path>
  187. </g>
  188. </g>
  189. </mask>
  190. </defs>
  191. <circle cx="50" cy="50" r="46" fill="#303335"> </circle>
  192. <circle cx="50" cy="50" r="42" fill="#EA3F3F" filter="url(#shadow-large)"> </circle>
  193. <g class="clock--face" font-size="8px" transform="translate(50 50)" text-anchor="middle"
  194. dominant-baseline="middle"></g>
  195. <circle mask="url(#mask)" cx="50" cy="50" r="50" fill="#303335"></circle>
  196. <circle cx="50" cy="50" r="4" filter="url(#shadow-small)" fill="#303335"></circle>
  197. <g class="hands" transform="translate(50 50)">
  198. <g class="minutes" transform="rotate(240)">
  199. <path fill="#fff" d="M -0.4 8 h 0.8 v -33 h -0.8 z"></path>
  200. <circle fill="#303335" cx="0" cy="0" r="0.6"></circle>
  201. </g>
  202. <g class="seconds" transform="rotate(80)">
  203. <path fill="#EA3F3F" d="M -0.4 10 h 0.8 v -45 h -0.8 z"></path>
  204. <circle stroke-width="0.4" stroke="#EA3F3F" fill="#303335" cx="0" cy="0" r="0.8"></circle>
  205. </g>
  206. </g>
  207. </svg>
  208. </body>