{"id":1,"date":"2025-07-09T23:54:40","date_gmt":"2025-07-09T15:54:40","guid":{"rendered":"http:\/\/www.fishq.top\/?p=1"},"modified":"2025-08-04T13:31:18","modified_gmt":"2025-08-04T05:31:18","slug":"hello-world","status":"publish","type":"post","link":"https:\/\/www.fishq.top\/index.php\/2025\/07\/09\/hello-world\/","title":{"rendered":"\u4f60\u597d\uff0c\u6765\u8bbf\u8005\uff01"},"content":{"rendered":"\n<!-- ========== \u51b7\u77e5\u8bc6\u5c0f\u9c7c ========== -->\n<style>\n\/* \u5c0f\u9c7c\u56fa\u5b9a\u5728\u53f3\u4e0a\u89d2 *\/\n#fishQ-btn {\n  position: fixed;\n  top: 20px;\n  right: 20px;\n  width: 60px;\n  height: 60px;\n  cursor: pointer;\n  z-index: 9999;\n}\n\/* \u7728\u773c\u52a8\u753b *\/\n@keyframes blink {\n  0%,100% { transform: scaleY(1); }\n  50%      { transform: scaleY(0.1); }\n}\n.eye {\n  transform-origin: 35px 45px;   \/* \u773c\u775b\u4e2d\u5fc3 *\/\n}\n.blink {\n  animation: blink .15s 3;       \/* \u7728 3 \u6b21 *\/\n}\n\n\/* ========== \u6c14\u6ce1\u5f39\u7a97 ========== *\/\n#fishQ-popup {\n  position: fixed;\n  top: 90px;\n  right: 20px;\n  max-width: 260px;\n  padding: 12px 16px;\n  border-radius: 16px;\n  background: #fff;\n  color: #333;\n  font-size: 14px;\n  line-height: 1.5;\n  box-shadow: 0 2px 8px rgba(0,0,0,.15);\n  opacity: 0;\n  transform: translateY(-10px);\n  transition: opacity .3s, transform .3s;\n  pointer-events: none;\n}\n\/* \u5c0f\u4e09\u89d2 *\/\n#fishQ-popup::before {\n  content: '';\n  position: absolute;\n  top: -8px;\n  right: 28px;\n  border-left: 8px solid transparent;\n  border-right: 8px solid transparent;\n  border-bottom: 8px solid #fff;\n}\n#fishQ-popup.show {\n  opacity: 1;\n  transform: translateY(0);\n  pointer-events: auto;\n}\n<\/style>\n\n<!-- \u7535\u5b50\u5c0f\u9c7c -->\n<svg id=\"fishQ-btn\" viewBox=\"0 0 100 100\" aria-label=\"\u5c0f\u9c7c\">\n  <ellipse cx=\"50\" cy=\"50\" rx=\"35\" ry=\"25\" fill=\"#00bfff\"\/>\n  <g class=\"eye\">\n    <circle cx=\"35\" cy=\"45\" r=\"6\" fill=\"#fff\"\/>\n    <circle cx=\"35\" cy=\"45\" r=\"3\" fill=\"#000\"\/>\n  <\/g>\n  <path d=\"M80 50 L95 40 L95 60 Z\" fill=\"#00bfff\"\/>\n<\/svg>\n\n<!-- \u6c14\u6ce1\u6587\u5b57 -->\n<div id=\"fishQ-popup\"><\/div>\n\n<script>\n\/* ---------- \u51b7\u77e5\u8bc6\u53e5\u5b50\u5e93 ---------- *\/\nconst dataQuotes = [\n  \"\u6d77\u661f\u6ca1\u6709\u5927\u8111\uff0c\u4f46\u6709\u795e\u7ecf\u7f51\u7edc\u3002\",\n  \"\u7ae0\u9c7c\u6709 3 \u9897\u5fc3\uff0c\u4e24\u9897\u8d1f\u8d23\u9cc3\uff0c\u4e00\u9897\u8d1f\u8d23\u5168\u8eab\u3002\",\n  \"\u8702\u7fa4\u5d29\u6e83\u7efc\u5408\u5f81\u81f3\u4eca\u4ecd\u662f\u8c1c\u56e2\u3002\",\n  \"\u84dd\u9cb8\u7684\u5fc3\u810f\u91cd\u8fbe 180 \u516c\u65a4\uff0c\u50cf\u4e00\u8f86\u5c0f\u6469\u6258\u3002\",\n  \"\u6c34\u718a\u866b\u80fd\u5728\u592a\u7a7a\u771f\u7a7a\u91cc\u5b58\u6d3b 10 \u5929\u3002\",\n  \"\u732b\u54aa\u7684\u547c\u565c\u9891\u7387 25-50 Hz\uff0c\u53ef\u4fc3\u8fdb\u9aa8\u9abc\u81ea\u6108\u3002\"\n];\n\n\/* ---------- \u903b\u8f91\uff1a3 \u8fde\u51fb ---------- *\/\nconst fishBtn = document.getElementById('fishQ-btn');\nconst popup   = document.getElementById('fishQ-popup');\nlet clicks = 0;\nlet timer  = null;\n\nfishBtn.addEventListener('click', () => {\n  clicks++;\n\n  \/* \u7728\u773c *\/\n  const eye = fishBtn.querySelector('.eye');\n  eye.classList.add('blink');\n  setTimeout(() => eye.classList.remove('blink'), 450);\n\n  \/* \u8ba1\u65f6\u5668\uff1a1 \u79d2\u5185 3 \u51fb\u89e6\u53d1 *\/\n  if (clicks === 1) {\n    timer = setTimeout(() => clicks = 0, 1000);\n  } else if (clicks === 3) {\n    clearTimeout(timer);\n    clicks = 0;\n    showQuote();\n  }\n});\n\n\/* ---------- \u663e\u793a\u6c14\u6ce1 ---------- *\/\nfunction showQuote() {\n  const text = dataQuotes[Math.floor(Math.random() * dataQuotes.length)];\n  popup.textContent = text;\n  popup.classList.add('show');\n  \/* 10 \u79d2\u540e\u6d88\u5931 *\/\n  setTimeout(() => popup.classList.remove('show'), 10000);\n}\n<\/script>\n\n\n\n<p>\u563f\uff0c\u5c4f\u5e55\u90a3\u5934\u7684\u4f60\uff0c\u5148\u505c\u4e00\u505c\u5fd9\u788c\u7684\u624b\u6307\uff0c\u542c\u6211\u8bf4\u58f0\u201c\u55e8\uff01\u201d\ud83d\udc4b<br>\u6211\u662f FISHQ\u2014\u2014\u4e00\u6761\u6e38\u5f0b\u5728 0 \u4e0e 1 \u4e4b\u95f4\u7684\u5c0f\u9c7c\uff0c\u4e5f\u662f\u8fd9\u95f4\u535a\u5ba2\u7684\u9c7c\u7f38\u4e3b\u4eba\u3002\u4eca\u5929\uff0c\u9c7c\u7f38\u6362\u597d\u65b0\u6c34\uff0c\u6c34\u8349\u6447\u66f3\uff0c\u6c14\u6ce1\u5495\u565c\uff0c\u6211\u7ec8\u4e8e\u628a\u201c\u6b22\u8fce\u6765\u5230\u6211\u5bb6\u201d\u7684\u724c\u5b50\u6302\u5728\u4e86\u6700\u663e\u773c\u7684\u4f4d\u7f6e\u3002\u4e8e\u662f\uff0c\u5c31\u6709\u4e86\u4f60\u6b63\u5728\u8bfb\u7684\u8fd9\u7bc7\u5f00\u95e8\u6587\u7ae0\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u4e3a\u4ec0\u4e48\u53ebFISHQ\u5462\uff1f<\/h2>\n\n\n\n<p>\u5176\u5b9eFISHQ\u662f\u6211\u7684\u540d\u5b57\u7684\u8c10\u97f3\uff0cyq\uff0c\u55e8\u5bb3\uff01\u4e5f\u6709\u5176\u4ed6\u7684\u5916\u53f7\uff0c\u6bd4\u5982FishGun\uff08\u9c7c\u67aa\uff09\uff0c\u633a\u62bd\u8c61\u7684\u662f\u5427=-=<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u8fd9\u4e2a\u9c7c\u7f38\u91cc\u4f1a\u517b\u4ec0\u4e48\uff1f<\/h2>\n\n\n\n<p>1. <strong class=\"\">\u6280\u672f\u73ca\u745a\u7901<\/strong><\/p>\n\n\n\n<p>C++\uff0cqt\uff0c\u97f3\u89c6\u9891\uff0c\u9999\u6a59\u6d3e\uff0crk3588\uff0c\u8ba1\u7b97\u673a\u89c6\u89c9\uff0cyolo\uff0cOpenCV\uff0cOpenGL\uff0c<\/p>\n\n\n\n<p>\u662f\u4e0d\u662f\u8fd8\u633a\u591a\u7684\uff1f\u522b\u62c5\u5fc3\uff0c\u6211\u4f1a\u628a\u590d\u6742\u7684\u6982\u5ff5\u716e\u6210\u5c0f\u9c7c\u5e72\uff0c\u56bc\u5f97\u560e\u5623\u8106\u3002<\/p>\n\n\n\n<p>2.<strong class=\"\">\u751f\u6d3b\u6c34\u8349<\/strong><\/p>\n\n\n\n<p>\u901a\u52e4\u8def\u4e0a\u7684\u4e00\u6bb5\u65cb\u5f8b\u3001\u65c5\u9014\u8def\u4e0a\u7684\u98ce\u666f\u3001\u6df1\u591c\u53a8\u623f\u7684\u4e00\u7897\u6ce1\u9762\u2014\u2014\u5b83\u4eec\u90fd\u662f\u6c34\u8349\uff0c\u8ba9\u9c7c\u7f38\u6709\u989c\u8272\u3002<\/p>\n\n\n\n<p>3.<strong class=\"\">\u9605\u8bfb\u4e0e\u89c2\u5f71\u7684\u6c89\u6728<\/strong><\/p>\n\n\n\n<p>\u4e66\u5f71\u97f3\u662f\u6c89\u6728\uff0c\u6ce1\u5728\u6c34\u91cc\u4e45\u4e86\u4f1a\u957f\u51fa\u67d4\u8f6f\u7684\u9752\u82d4\u3002\u6211\u4f1a\u5b9a\u671f\u628a\u6c89\u6728\u7ffb\u4e2a\u9762\uff0c\u5206\u4eab\u521a\u957f\u51fa\u7684\u7eff\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u6ce8\u610f\u4e8b\u9879<\/h2>\n\n\n\n<p>\u7528\u7535\u8111\u6d4f\u89c8\u4f53\u9a8c\u4f1a\u66f4\u597d\u4e00\u4e9b\uff0c\u624b\u673a\u6d4f\u89c8\u597d\u50cf\u65f6\u5e8f\u56fe\u90a3\u4e9b\u663e\u793a\u4e0d\u51fa\u6765\u3002<\/p>\n\n\n\n<p>\u5982\u679c\u65f6\u5e8f\u56fe\u592a\u6697\u7684\u8bdd\u53ef\u4ee5\u70b9\u51fb\u9875\u9762\u53f3\u4e0b\u89d2\u7684\u706f\u6ce1\u6362\u4e3a\u65e5\u95f4\u6a21\u5f0f\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u4eca\u5929\u7684\u5f69\u86cb<\/h2>\n\n\n\n<p>\u5728\u535a\u5ba2\u53f3\u4e0a\u89d2\u85cf\u7740\u4e00\u6761\u7535\u5b50\u5c0f\u9c7c\uff0c\u70b9\u5b83\u4e09\u4e0b\uff0c\u4f1a\u8df3\u51fa\u4e00\u6bb5\u968f\u673a\u7684\u51b7\u77e5\u8bc6\uff08\u6bd4\u5982\u201c\u6d77\u661f\u6ca1\u6709\u5927\u8111\uff0c\u4f46\u6709\u795e\u7ecf\u7f51\u7edc\u201d\uff09\u3002\u8bd5\u8bd5\u770b\uff1f<\/p>\n\n\n\n<p>\u597d\u4e86\uff0c\u6c34\u5df2\u7ecf\u653e\u597d\uff0c\u6c27\u6c14\u6cf5\u55e1\u55e1\u4f5c\u54cd\u3002FISHQ \u7684\u9c7c\u7f38\u6b63\u5f0f\u5f00\u5f20\u3002<br>\u613f\u4f60\u5728\u8fd9\u91cc\u627e\u5230\u4e00\u9897\u6c14\u6ce1\u90a3\u4e48\u5927\u7684\u5feb\u4e50\uff0c\u6216\u4e00\u7247\u8d1d\u58f3\u90a3\u4e48\u5927\u7684\u542f\u53d1\u3002<br>\u4e0b\u6b21\u89c1\u7684\u65f6\u5019\uff0c\u8bb0\u5f97\u5e26\u4e0a\u4e00\u4e24\u4e2a\u95ee\u9898\uff0c\u6216\u8005\u4e00\u628a\u9c7c\u98df\u3002\ud83d\udc20<\/p>\n\n\n\n<p>\u2014\u2014 FISHQ<br>\u5199\u4e8e 2025.07.23\uff0c\u4e00\u4e2a\u9002\u5408\u6f5c\u6c34\u7684\u590f\u65e5\u508d\u665a<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u563f\uff0c\u5c4f\u5e55\u90a3\u5934\u7684\u4f60\uff0c\u5148\u505c\u4e00\u505c\u5fd9\u788c\u7684\u624b\u6307\uff0c\u542c\u6211\u8bf4\u58f0\u201c\u55e8\uff01\u201d\ud83d\udc4b\u6211\u662f FISHQ\u2014\u2014\u4e00\u6761\u6e38\u5f0b\u5728 0 \u4e0e 1 \u4e4b\u95f4\u7684\u5c0f\u9c7c [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":969,"comment_status":"open","ping_status":"open","sticky":true,"template":"","format":"standard","meta":{"_lmt_disableupdate":"no","_lmt_disable":"","ngg_post_thumbnail":0,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"modified_by":"FISHQ","_links":{"self":[{"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/posts\/1","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/comments?post=1"}],"version-history":[{"count":31,"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/posts\/1\/revisions"}],"predecessor-version":[{"id":1189,"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/posts\/1\/revisions\/1189"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/media\/969"}],"wp:attachment":[{"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/media?parent=1"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/categories?post=1"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fishq.top\/index.php\/wp-json\/wp\/v2\/tags?post=1"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}