index.html 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <!DOCTYPE html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <script type="text/javascript" src="../js/jquery.min.js" crossorigin="anonymous"></script>
  5. <link rel="stylesheet" href="../css/bootstrap.min.css" crossorigin="anonymous">
  6. <script type="text/javascript" src="../js/bootstrap.min.js" crossorigin="anonymous"></script>
  7. <link rel="canonical" href="https://schtonn.github.io/">
  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. <title>娱乐</title>
  14. <style>
  15. *:not(svg, path, g) {
  16. transition-duration: 300ms;
  17. }
  18. /* https://i.328888.xyz/2022/12/23/Dn9eo.jpeg */
  19. .btn {
  20. text-shadow: rgb(133, 133, 130) 1px 2px 3px;
  21. transition-duration: 100ms;
  22. transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  23. }
  24. .btn:not(.btn-sm) {
  25. margin-top: 5px;
  26. }
  27. /* .btn:hover {
  28. text-shadow: rgb(33, 33, 30, 0.8) 3px 3px 5px;
  29. transform: rotate(2deg) translate(-2px, -4px);
  30. } */
  31. #random:hover {
  32. text-shadow: -3px -3px 3px rosybrown, 3px 3px 3px royalblue, 3px -3px 5px whitesmoke, -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
  33. }
  34. #paint:hover {
  35. 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;
  36. }
  37. #chess:hover {
  38. text-shadow: rgb(13, 13, 10, 0.8) -1px -2px 3px, whitesmoke 1px 2px 3px, whitesmoke -1px 2px 3px;
  39. }
  40. #gravity:hover {
  41. text-shadow: seagreen -1px -2px 3px, grey 1px 2px 3px, whitesmoke -1px 2px 3px;
  42. }
  43. img {
  44. border: 3px dotted grey;
  45. width: 300px;
  46. }
  47. .btn.nohover:hover {
  48. transform: none;
  49. outline: none;
  50. text-shadow: none;
  51. }
  52. body {
  53. background: url('../fun/chat/ai-game/1/duck.png'), #f88;
  54. background-blend-mode: screen
  55. }
  56. .btn {
  57. position: relative;
  58. top: 0px;
  59. transition: all 0.2s;
  60. }
  61. .btn:hover {
  62. top: -2px;
  63. }
  64. .btn:active {
  65. top: 5px;
  66. }
  67. svg {
  68. margin-top: 1rem;
  69. width: 30vmin;
  70. height: auto;
  71. filter: url(#shadow-large);
  72. }
  73. </style>
  74. <script src='https://cdnjs.cloudflare.com/ajax/libs/animejs/2.2.0/anime.min.js'></script>
  75. <script>
  76. const zeroPadded = number => ((number >= 10) ? number.toString() : `0${number}`);
  77. const twelveClock = (twentyFourClock) => {
  78. if (twentyFourClock === 0) {
  79. return 12;
  80. } if (twentyFourClock > 12) {
  81. return twentyFourClock - 12;
  82. }
  83. return twentyFourClock;
  84. };
  85. var tot = 0;
  86. function getTime() {
  87. setTimeout(() => {
  88. var click = new Audio('clock.mp3');
  89. click.volume = .3;
  90. click.preload = true;
  91. click.play();
  92. }, 900);
  93. var now = new Date();
  94. var hours = now.getHours();
  95. var minutes = now.getMinutes();
  96. if (now.getSeconds() == 0) tot++;
  97. console.log(tot, now.getSeconds())
  98. var seconds = now.getSeconds() + tot * 60;
  99. var time = {
  100. hours: twelveClock(hours), // 1-12
  101. minutes, // 0-59
  102. seconds, // 0-59
  103. };
  104. var rotation = {
  105. hours: twelveClock(hours),
  106. minutes,
  107. seconds,
  108. };
  109. var entries = Object.entries(time);
  110. entries.forEach(([key, value]) => {
  111. console.log((key === 'hours') ? `rotate(${-15 + value * 30})` : `rotate(${value * 6})`)
  112. anime({
  113. targets: `g.${key}`,
  114. transform: (key === 'hours') ? `rotate(${-15 + value * 30})` : `rotate(${value * 6})`,
  115. duration: 400,
  116. });
  117. });
  118. }
  119. $().ready(function () {
  120. const clockFace = $('svg g.clock--face')[0];
  121. for (let i = 0; i < 12; i += 1) {
  122. clockFace.innerHTML += `<text transform="rotate(${-90 + 30 * (i + 1)}) translate(34 0) rotate(${90 - 30 * (i + 1)})" >${zeroPadded(i + 1)}</text>`;
  123. }
  124. getTime();
  125. setInterval(getTime, 1000);
  126. })
  127. </script>
  128. </head>
  129. <body itemscope itemtype="http://schema.org/WebPage">
  130. <a class="btn btn-info" href="/"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>&nbsp;返回</a>
  131. <div class="page-header">
  132. <h2>> 娱乐 <small>首页放不下了,根目录也太挤了,再有千奇百怪的想法我都往这扔</small></h2>
  133. </div>
  134. <div>
  135. <a class="btn btn-warning" href="core/">Core</a>
  136. <div class="btn-group">
  137. <button type="button" class="btn btn-warning dropdown-toggle" data-toggle="dropdown">sans&nbsp;<span
  138. class="caret"></span></button>
  139. <ul class="dropdown-menu">
  140. <li><a href="sans/">sans</a></li>
  141. <li><a href="sans-cheat/"><span class="glyphicon glyphicon-wrench"
  142. aria-hidden="true"></span>&nbsp;&nbsp;sans</a></li>
  143. </ul>
  144. </div>
  145. <a class="btn btn-info" id="random" href="random/"><span class="glyphicon glyphicon-random"
  146. aria-hidden="true"></span>&nbsp;&nbsp;random</a>
  147. <a class="btn btn-success" id="paint" href="/paint/"><span class="glyphicon glyphicon-pencil"
  148. aria-hidden="true"></span>&nbsp;&nbsp;绘画板</a>
  149. <a class="btn btn-success" id="chess" href="/chess/"><span class="glyphicon glyphicon-record"
  150. aria-hidden="true"></span>&nbsp;&nbsp;五子棋</a>
  151. <a class="btn btn-info" id="gravity" href="gravity/"><span class="glyphicon glyphicon-magnet"
  152. aria-hidden="true"></span>&nbsp;&nbsp;引力</a>
  153. <a class="btn btn-warning" id="raytrack" href="raytrace/"><span class="glyphicon glyphicon-certificate"
  154. aria-hidden="true"></span>&nbsp;&nbsp;1k光追</a>
  155. <a class="btn btn-info" id="article" href="article/"><span class="glyphicon glyphicon-book"
  156. aria-hidden="true"></span>&nbsp;&nbsp;一些好玩的文章</a>
  157. <!-- <a class="btn btn-info" id="music" href="music/"><span class="glyphicon glyphicon-music"
  158. aria-hidden="true"></span>&nbsp;&nbsp;音乐创作</a> -->
  159. <a class="btn btn-info" id="test" href="test/"><span class="glyphicon glyphicon-transfer"
  160. aria-hidden="true"></span>&nbsp;&nbsp;Websocket 测试</a>
  161. <a class="btn btn-info" id="chat" href="chat/"><span class="glyphicon glyphicon-comment"
  162. aria-hidden="true"></span>&nbsp;&nbsp;ChatGPT 测试</a>
  163. <a class="btn btn-success" id="gravity" href="https://太帅了.cn" title="中国人不懂浪漫,这么好的域名让我注册了"><span
  164. class="glyphicon glyphicon-link" aria-hidden="true"></span>&nbsp;&nbsp;太帅了.cn</a>
  165. <a class="btn btn-success" href="/minecraft">Minecraft</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>
  209. </html>