index.html 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  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="canonical" href="https://schtonn.github.io/">
  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. <link rel="stylesheet" href="../css/style.css">
  13. <!-- <link rel="stylesheet" href="/css/style.css"> -->
  14. <title>schtonn</title>
  15. <style>
  16. * {
  17. transition-duration: 300ms;
  18. }
  19. /* https://i.328888.xyz/2022/12/23/Dn9eo.jpeg */
  20. .btn {
  21. text-shadow: rgb(133, 133, 130) 1px 2px 3px;
  22. transition-duration: 100ms;
  23. transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  24. }
  25. .btn:not(.btn-sm) {
  26. margin-top: 5px;
  27. }
  28. .btn:hover {
  29. text-shadow: rgb(33, 33, 30, 0.8) 3px 3px 5px;
  30. transform: rotate(2deg) translate(-2px, -4px);
  31. }
  32. #random:hover {
  33. text-shadow: -3px -3px 3px rosybrown, 3px 3px 3px royalblue, 3px -3px 5px whitesmoke, -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
  34. }
  35. #paint:hover {
  36. 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;
  37. }
  38. #chess:hover {
  39. text-shadow: rgb(13, 13, 10, 0.8) -1px -2px 3px, whitesmoke 1px 2px 3px, whitesmoke -1px 2px 3px;
  40. }
  41. #gravity:hover {
  42. text-shadow: seagreen -1px -2px 3px, grey 1px 2px 3px, whitesmoke -1px 2px 3px;
  43. }
  44. img {
  45. transition-duration: 300ms;
  46. border: 3px dotted grey;
  47. width: 30%;
  48. }
  49. </style>
  50. </head>
  51. <body itemscope itemtype="http://schema.org/WebPage">
  52. <a class="btn btn-info" href="/"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>&nbsp;返回</a>
  53. <div class="page-header">
  54. <h2>> 娱乐<small>(首页放不下了,根目录也太挤了,再有千奇百怪的想法我都往这扔)</small></h2>
  55. </div>
  56. <div>
  57. <a class="btn btn-warning" href="core/">Core</a>
  58. <div class="btn-group">
  59. <button type="button" class="btn btn-warning dropdown-toggle" data-toggle="dropdown">sans&nbsp;<span
  60. class="caret"></span></button>
  61. <ul class="dropdown-menu">
  62. <li><a href="sans/">sans</a></li>
  63. <li><a href="sans-cheat/"><span class="glyphicon glyphicon-wrench"
  64. aria-hidden="true"></span>&nbsp;&nbsp;sans</a></li>
  65. </ul>
  66. </div>
  67. <a class="btn btn-info" id="random" href="random/"><span class="glyphicon glyphicon-random"
  68. aria-hidden="true"></span>&nbsp;&nbsp;random</a>
  69. <a class="btn btn-success" id="paint" href="/paint/"><span class="glyphicon glyphicon-pencil"
  70. aria-hidden="true"></span>&nbsp;&nbsp;绘画板</a>
  71. <a class="btn btn-success" id="chess" href="/chess/"><span class="glyphicon glyphicon-record"
  72. aria-hidden="true"></span>&nbsp;&nbsp;五子棋</a>
  73. <a class="btn btn-info" id="gravity" href="/gravity/"><span class="glyphicon glyphicon-magnet"
  74. aria-hidden="true"></span>&nbsp;&nbsp;引力</a>
  75. <a class="btn btn-info" id="raytrack" href="raytrace/"><span class="glyphicon glyphicon-cog"
  76. aria-hidden="true"></span>&nbsp;&nbsp;1k光追</a>
  77. <a class="btn btn-info" id="article" href="article/"><span class="glyphicon glyphicon-book"
  78. aria-hidden="true"></span>&nbsp;&nbsp;一些好玩的文章</a>
  79. </div>
  80. <hr>
  81. <img src="1.png">
  82. <p>(挤得我都对不上号了)</p>
  83. </body>
  84. </html>