index.html 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!DOCTYPE html>
  2. <head>
  3. <!-- <link async rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
  4. integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"> -->
  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. <title>日志</title>
  13. <style>
  14. .btn {
  15. text-shadow: rgb(85, 85, 85) 3px 2px 4px;
  16. display: inline-block;
  17. }
  18. .noshadow {
  19. text-shadow: none;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <a class="btn btn-info" href="/"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>&nbsp;返回</a>
  25. <div class="page-header">
  26. <h1>网站日志</h1>
  27. </div>
  28. <h3>
  29. 2022.12.3
  30. <small><a href="/chem">chem</a></small>
  31. </h3>
  32. <p>把化学式配平、相对质量计算的网页实现出来了,接下来还要加上 MySQL 的上传。</p>
  33. <p>为所有按钮加上了好玩的悬浮样式。这可真不容易,为了去掉浏览器自带的丑陋黑色边框,我进行了不懈的斗争,最后发现是除了 <code>:focus</code> 和 <code>:active</code> 选择器,还得写上
  34. <code>:focus:active</code> 。
  35. </p>
  36. <button class="btn btn-info">看看</button>&nbsp;&nbsp;&nbsp;&nbsp;
  37. <button class="btn btn-info"
  38. style="outline: 10px double rgba(95, 177, 221, 0.5);">悬浮</button>&nbsp;&nbsp;&nbsp;&nbsp;
  39. <button class="btn btn-info" style="outline: 5px dashed rgba(95, 177, 221, 0.5);">聚焦</button>
  40. <hr>
  41. <h3>
  42. 2022.12.2
  43. <small>MySQL</small>
  44. </h3>
  45. <p>近日研究了 Bootstrap 框架很多不错的设计,如按钮组团等,进行了应用。</p>
  46. <p>今天开始尝试在本地搭建 MySQL 数据库。希望是日后能建起一个存放中学化学式的数据库。</p>
  47. <hr>
  48. <h3>
  49. 2022.11.30
  50. <small>WebSocket</small>
  51. </h3>
  52. <p>有了小崔给的主机,开辟了很多新领域。</p>
  53. <p>不用暴力地琢磨纯静态页面了,可以开始自己开发网页后端。刚起步,先用 Node.js+Express 做后端。写了个配平化学式的接口(<a class="btn-xs btn-default noshadow"
  54. href="/chem?H2+O2=H2O">/chem?H2+O2=H2O</a>)。</p>
  55. <p>用 WebSocket 可以实现服务器与客户端的即时通讯,原先搭载在 LeanCloud 上的五子棋计算部分可以迁移到本地了。</p>
  56. <hr>
  57. <p>开始记录。</p>
  58. <hr>
  59. <p>:-)</p>
  60. </body>
  61. </html>