凡科网站右侧悬浮窗 在线客服简约图标大全快捷导航

之前有发个一个凡科的右侧悬浮窗,今天给加了一些图标样式,新增css判断窗口大小自动隐藏(手机端不会显示),这下比较齐全了。

可以自己自定义图标,在css更改图片链接即可(背景图标和鼠标hover浮动图标)。

如果要自己添加在css里写好就可以了。

预览:

20191218-7ac0b371135bf.gif

  1. <div class="wapnone fk_service">
  2. <ul>
  3. <li>
  4. <div class="fk_service_consult_cont1" style="display: none;"> <span class="fk_service_triangle"></span> 在线咨询 </div>
  5. </li>
  6. <li class="fk_service_box fk_service_consult">
  7. <div class="fk_service_consult_cont"> <span class="fk_service_triangle"></span>
  8. <div class="fk_service_consult_cont_top"> <span class="fk_service_hint"> <span class="fk_service_icon"></span>
  9. <span> 如遇问题,请联系站长 </span> </span> <span class="fk_service_button" onclick="window.open('https://wpa.qq.com/msgrd?v=3&uin=20838641&site=qq&menu=yes')">QQ联系</span>
  10. <span class="fk_service_button" onclick="window.open('https://mail.qq.com/cgi-bin/qm_share?t=qm_mailme&email=cpol@qq.com')">在线邮件</span>
  11. </div> <span class="fk_service_phone"> QQ 请注明来意 :20838641 </span> <span class="fk_service_check_site"> <span class="fk_service_icon"></span>
  12. <span onclick="window.open('http://tool.zmki.cn')">更多:极客导航</span> </span>
  13. </div>
  14. </li>
  15. <li class="fk_service_box fk_service_qr">
  16. <div class="fk_service_qr_cont"> <span class="fk_service_triangle"></span>
  17. <div class="fk_service_qrimg"> <span class="fk_service_qrimg_site"></span> 微信公众号 </div>
  18. <div class="fk_service_qrtext"><span>奇思妙想 · 科技小新</span></div>
  19. </div>
  20. </li>
  21. <!-- 不需要图标的注释或删除即可 -->
  22. <li class="fk_service_box fk_service_ax" onclick="window.open('https://tool.zmki.cn/index.php/t.html')">
  23. <div class="fk_service_ax_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  24. </li>
  25. <li class="fk_service_box fk_service_dh" onclick="window.open('https://tool.zmki.cn/index.php/t.html')">
  26. <div class="fk_service_dh_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  27. </li>
  28. <li class="fk_service_box fk_service_jk" onclick="window.open('https://tool.zmki.cn/index.php/t.html')">
  29. <div class="fk_service_jk_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  30. </li>
  31. <li class="fk_service_box fk_service_ws" onclick="window.open('https://tool.zmki.cn/index.php/t.html')">
  32. <div class="fk_service_ws_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  33. </li>
  34. <li class="fk_service_box fk_service_sd" onclick="window.open('https://tool.zmki.cn/index.php/t.html')">
  35. <div class="fk_service_sd_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  36. </li>
  37. <li class="fk_service_box fk_service_dz" onclick="window.open('https://tool.zmki.cn/index.php/t.html')">
  38. <div class="fk_service_dz_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  39. </li>
  40. <li class="fk_service_box fk_service_feedback" onclick="window.open('https://tool.zmki.cn/index.php/t.html')">
  41. <div class="fk_service_feedback_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  42. </li>
  43. <li class="fk_service_box fk_service_upward" onclick="FkService.fk_upWard();" style="display: block;">
  44. <div class="fk_service_upward_cont"> <span class="fk_service_triangle"></span> <span> 返回顶部 </span> </div>
  45. </li>
  46. </ul>
  47. </div>

CSS:

  1. <!-- <link rel="stylesheet" href="https://fe.faisys.com/fkService_1_0/css/fk_service.min.css?v=201908151449">
  2. -->
  3. <style>
  4. .fk_service {
  5. max-height: 232px;
  6. position: fixed;
  7. right: 10px;
  8. top: 40%;
  9. /* 垂直位置 */
  10. font-family: "微软雅黑";
  11. font-size: 14px;
  12. color: #243558;
  13. z-index: 10000
  14. }
  15. .fk_service ul {
  16. margin: 0;
  17. padding: 0;
  18. position: absolute;
  19. right: 0
  20. }
  21. .fk_service li {
  22. list-style-type: none
  23. }
  24. .fk_service li>div {
  25. box-sizing: border-box;
  26. box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1)
  27. }
  28. .fk_service_box {
  29. width: 40px;
  30. height: 40px;
  31. background: #fff;
  32. margin-bottom: 10px;
  33. border-radius: 4px;
  34. box-sizing: border-box;
  35. box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1)
  36. }
  37. .fk_service_triangle {
  38. top: 12px;
  39. right: -11px;
  40. position: absolute;
  41. border-top: 7px solid transparent;
  42. border-bottom: 7px solid transparent;
  43. border-left: 11px solid #e1e6ec;
  44. z-index: 1010
  45. }
  46. .fk_service_triangle:after {
  47. content: "\20";
  48. top: -6px;
  49. right: 1px;
  50. position: absolute;
  51. border-top: 6px solid transparent;
  52. border-bottom: 6px solid transparent;
  53. border-left: 10px solid #fff;
  54. z-index: 1000
  55. }
  56. .fk_service_triangle:before {
  57. content: "\20";
  58. width: 80px;
  59. height: 45px;
  60. top: -20px;
  61. right: -52px;
  62. position: absolute;
  63. background: rgba(0, 0, 0, 0)
  64. }
  65. @keyframes fade-in {
  66. 0% {
  67. opacity: .4;
  68. right: 82px
  69. }
  70. 100% {
  71. opacity: 1;
  72. right: 62px
  73. }
  74. }
  75. .fk_service_consult {
  76. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -366px -16px #fff
  77. }
  78. .fk_service_consult:hover {
  79. border: 0;
  80. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -410px -16px #4f7cfc
  81. }
  82. .fk_service_consult:hover .fk_service_consult_cont {
  83. display: block;
  84. opacity: 1;
  85. transition: linear .2s;
  86. animation-name: fade-in;
  87. animation-duration: .3s;
  88. animation-iteration-count: 1;
  89. animation-delay: 0s
  90. }
  91. .fk_service_consult_cont {
  92. width: 200px;
  93. min-height: 210px;
  94. max-height: 268px;
  95. border-radius: 3px;
  96. background: #fff;
  97. right: 62px;
  98. position: absolute;
  99. text-align: center;
  100. border: 1px solid #e1e6ec;
  101. display: none;
  102. opacity: 0
  103. }
  104. .fk_service_consult_cont1 {
  105. width: 70px;
  106. height: 40px;
  107. line-height: 40px;
  108. background: #fff;
  109. border-radius: 5px;
  110. right: 62px;
  111. text-align: center;
  112. position: absolute;
  113. display: none;
  114. border: 1px solid #e1e6ec
  115. }
  116. .fk_service_consult_cont1 .fk_service_triangle:before {
  117. width: 0 !important
  118. }
  119. .fk_service_consult_cont>.fk_service_triangle:after {
  120. border-left: 10px solid #f6f8fb !important
  121. }
  122. .fk_service_consult_cont span {
  123. float: left
  124. }
  125. .fk_service_consult_cont_top {
  126. width: 100%;
  127. height: 157px;
  128. background: #f6f8fb;
  129. border-radius: 3px;
  130. border-bottom: 1px solid #eef2f8
  131. }
  132. .fk_service_hint {
  133. width: 100%;
  134. height: 40px;
  135. line-height: 40px;
  136. font-size: 12px;
  137. color: #9aa8c2;
  138. text-align: center
  139. }
  140. .fk_service_hint>.fk_service_icon {
  141. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -460px -25px;
  142. width: 15px;
  143. height: 15px;
  144. margin: 13px 2px 0 18px
  145. }
  146. .fk_service_button {
  147. width: 160px;
  148. height: 38px;
  149. line-height: 38px;
  150. background: #4f7cfc;
  151. border-radius: 18px;
  152. text-align: center;
  153. color: #fff;
  154. margin: 5px 0 10px 20px;
  155. cursor: pointer
  156. }
  157. .fk_service_button:hover {
  158. background: #618aff
  159. }
  160. .fk_service_phone {
  161. width: 100%;
  162. height: 53px;
  163. line-height: 53px;
  164. font-size: 14px;
  165. text-align: center
  166. }
  167. .fk_service_check_site {
  168. width: 100%;
  169. height: 48px;
  170. line-height: 48px;
  171. color: #3b6bf4;
  172. border-top: 1px solid #eaeef5;
  173. cursor: pointer
  174. }
  175. .fk_service_check_site>.fk_service_icon {
  176. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -461px -75px;
  177. width: 20px;
  178. height: 20px;
  179. margin: 15px 2px 0 45px
  180. }
  181. .fk_service_feedback {
  182. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -363px -64px #fff
  183. }
  184. .fk_service_feedback:hover {
  185. border: 0;
  186. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -407px -64px #4f7cfc;
  187. cursor: pointer
  188. }
  189. .fk_service_feedback:hover .fk_service_feedback_cont {
  190. display: block;
  191. opacity: 1;
  192. transition: linear .2s;
  193. animation-name: fade-in;
  194. animation-duration: .3s;
  195. animation-iteration-count: 1;
  196. animation-delay: 0s
  197. }
  198. .fk_service_feedback_cont {
  199. width: 264px;
  200. height: 40px;
  201. line-height: 40px;
  202. background: #fff;
  203. border-radius: 5px;
  204. right: 62px;
  205. text-align: center;
  206. position: absolute;
  207. display: none;
  208. border: 1px solid #e1e6ec
  209. }
  210. .fk_service_qr {
  211. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -365px -113px #fff
  212. }
  213. .fk_service_qr:hover {
  214. border: 0;
  215. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -409px -113px #4f7cfc
  216. }
  217. .fk_service_qr:hover .fk_service_qr_cont {
  218. display: block;
  219. opacity: 1;
  220. transition: linear .2s;
  221. animation-name: fade-in;
  222. animation-duration: .3s;
  223. animation-iteration-count: 1;
  224. animation-delay: 0s
  225. }
  226. .fk_service_qr_cont {
  227. width: 143px;
  228. height: 202px;
  229. border-radius: 3px;
  230. background: #fff;
  231. right: 62px;
  232. position: absolute;
  233. text-align: center;
  234. border: 1px solid #e1e6ec;
  235. background-color: #f6f8fb;
  236. display: none;
  237. opacity: 0
  238. }
  239. .fk_service_qr_cont>.fk_service_triangle:after {
  240. border-left: 10px solid #f6f8fb !important
  241. }
  242. .fk_service_qr_cont>.fk_service_qrimg {
  243. width: 100%;
  244. height: 164px;
  245. float: left
  246. }
  247. .fk_service_qrimg_site {
  248. width: 119px;
  249. height: 119px;
  250. float: left;
  251. margin: 12px 12px 5px 12px;
  252. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -41px -26px
  253. }
  254. .fk_service_qrimg_hd {
  255. width: 119px;
  256. height: 119px;
  257. float: left;
  258. margin: 12px 12px 5px 12px;
  259. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -198px -26px
  260. }
  261. .fk_service_qrimg_wxast {
  262. width: 119px;
  263. height: 119px;
  264. float: left;
  265. margin: 12px 12px 5px 12px;
  266. background: url(../image/fk_service.png?v=201905151200) no-repeat -198px -328px
  267. }
  268. .fk_service_qrimg_flyer {
  269. width: 119px;
  270. height: 119px;
  271. float: left;
  272. margin: 12px 12px 5px 12px;
  273. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -41px -177px
  274. }
  275. .fk_service_qrimg_wxapp {
  276. width: 119px;
  277. height: 119px;
  278. float: left;
  279. margin: 12px 12px 5px 12px;
  280. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -198px -177px
  281. }
  282. .fk_service_qrimg_fkmall {
  283. width: 119px;
  284. height: 119px;
  285. float: left;
  286. margin: 12px 12px 5px 12px;
  287. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -41px -326px
  288. }
  289. .fk_service_qr_cont>.fk_service_qrtext {
  290. width: 100%;
  291. height: 35px;
  292. font-size: 12px;
  293. color: #7b89a6;
  294. background-color: #fff;
  295. float: left;
  296. bottom: 0;
  297. display: table
  298. }
  299. .fk_service_qr_cont>.fk_service_qrtext>span {
  300. display: table-cell;
  301. vertical-align: middle
  302. }
  303. .fk_service_upward {
  304. display: none;
  305. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -363px -159px #fff
  306. }
  307. .fk_service_upward:hover {
  308. border: 0;
  309. background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -407px -159px #4f7cfc;
  310. cursor: pointer
  311. }
  312. .fk_service_upward:hover .fk_service_upward_cont {
  313. display: block;
  314. opacity: 1;
  315. transition: linear .2s;
  316. animation-name: fade-in;
  317. animation-duration: .3s;
  318. animation-iteration-count: 1;
  319. animation-delay: 0s
  320. }
  321. .fk_service_upward_cont {
  322. width: 84px;
  323. height: 40px;
  324. line-height: 40px;
  325. border-radius: 3px;
  326. background: #fff;
  327. right: 62px;
  328. position: absolute;
  329. text-align: center;
  330. border: 1px solid #e1e6ec;
  331. display: none;
  332. opacity: 0
  333. }
  334. .fk_service_upward_cont span {
  335. font-size: 14px
  336. }
  337. /* ----------------------------------------------------------------------- */
  338. /* 新增图标->zmki 开始*/
  339. .fk_service_jk {
  340. /* 前景图标 */
  341. background: url(https://a-oss.zmki.cn/2019/20191218-c9feba3074fcf.png) no-repeat center center #fff;
  342. background-size: 40%40%;
  343. }
  344. .fk_service_jk:hover {
  345. border: 0;
  346. /* 鼠标悬浮图标 */
  347. background: url(https://a-oss.zmki.cn/2019/20191218-9e8acd5341cdc.png) no-repeat center center #4f7cfc;
  348. background-size: 40%40%;
  349. cursor: pointer
  350. }
  351. .fk_service_jk:hover .fk_service_jk_cont {
  352. display: block;
  353. opacity: 1;
  354. transition: linear .2s;
  355. animation-name: fade-in;
  356. animation-duration: .3s;
  357. animation-iteration-count: 1;
  358. animation-delay: 0s
  359. }
  360. .fk_service_jk_cont {
  361. width: 264px;
  362. height: 40px;
  363. line-height: 40px;
  364. background: #fff;
  365. border-radius: 5px;
  366. right: 62px;
  367. text-align: center;
  368. position: absolute;
  369. display: none;
  370. border: 1px solid #e1e6ec
  371. }
  372. /* 新增图标->zmki 结束*/
  373. /* 新增图标->zmki 开始*/
  374. .fk_service_ws {
  375. background: url(https://a-oss.zmki.cn/2019/20191218-61b4baac98ee7.png) no-repeat center center #fff;
  376. background-size: 50%50%;
  377. }
  378. .fk_service_ws:hover {
  379. border: 0;
  380. background: url(https://a-oss.zmki.cn/2019/20191218-8ded04c01bb3c.png) no-repeat center center #4f7cfc;
  381. background-size: 50%50%;
  382. cursor: pointer
  383. }
  384. .fk_service_ws:hover .fk_service_ws_cont {
  385. display: block;
  386. opacity: 1;
  387. transition: linear .2s;
  388. animation-name: fade-in;
  389. animation-duration: .3s;
  390. animation-iteration-count: 1;
  391. animation-delay: 0s
  392. }
  393. .fk_service_ws_cont {
  394. width: 264px;
  395. height: 40px;
  396. line-height: 40px;
  397. background: #fff;
  398. border-radius: 5px;
  399. right: 62px;
  400. text-align: center;
  401. position: absolute;
  402. display: none;
  403. border: 1px solid #e1e6ec
  404. }
  405. /* 新增图标->zmki 结束*/
  406. /* 闪电 新增图标->zmki 开始*/
  407. .fk_service_sd {
  408. background: url(https://a-oss.zmki.cn/2019/20191218-94664bd399372.png) no-repeat center center #fff;
  409. background-size: 50%50%;
  410. }
  411. .fk_service_sd:hover {
  412. border: 0;
  413. background: url(https://a-oss.zmki.cn/2019/20191218-fab840acee28b.png) no-repeat center center #4f7cfc;
  414. background-size: 50%50%;
  415. cursor: pointer
  416. }
  417. .fk_service_sd:hover .fk_service_sd_cont {
  418. display: block;
  419. opacity: 1;
  420. transition: linear .2s;
  421. animation-name: fade-in;
  422. animation-duration: .3s;
  423. animation-iteration-count: 1;
  424. animation-delay: 0s
  425. }
  426. .fk_service_sd_cont {
  427. width: 264px;
  428. height: 40px;
  429. line-height: 40px;
  430. background: #fff;
  431. border-radius: 5px;
  432. right: 62px;
  433. text-align: center;
  434. position: absolute;
  435. display: none;
  436. border: 1px solid #e1e6ec
  437. }
  438. /*闪电 新增图标->zmki 结束*/
  439. /* 导航 新增图标->zmki 开始*/
  440. .fk_service_dh {
  441. background: url(https://a-oss.zmki.cn/2019/20191218-711bcdc875f32.png) no-repeat center center #fff;
  442. background-size: 60%60%;
  443. }
  444. .fk_service_dh:hover {
  445. border: 0;
  446. background: url(https://a-oss.zmki.cn/2019/20191218-8d9cf4c72a239.png) no-repeat center center #4f7cfc;
  447. background-size: 60%60%;
  448. cursor: pointer
  449. }
  450. .fk_service_dh:hover .fk_service_dh_cont {
  451. display: block;
  452. opacity: 1;
  453. transition: linear .2s;
  454. animation-name: fade-in;
  455. animation-duration: .3s;
  456. animation-iteration-count: 1;
  457. animation-delay: 0s
  458. }
  459. .fk_service_dh_cont {
  460. width: 264px;
  461. height: 40px;
  462. line-height: 40px;
  463. background: #fff;
  464. border-radius: 5px;
  465. right: 62px;
  466. text-align: center;
  467. position: absolute;
  468. display: none;
  469. border: 1px solid #e1e6ec
  470. }
  471. /*导航 新增图标->zmki 结束*/
  472. /* 爱心 新增图标->zmki 开始*/
  473. .fk_service_ax {
  474. background: url(https://a-oss.zmki.cn/2019/20191218-bf1792e790a39.png) no-repeat center center #fff;
  475. background-size: 40%40%;
  476. }
  477. .fk_service_ax:hover {
  478. border: 0;
  479. background: url(https://a-oss.zmki.cn/2019/20191218-f379809ce7aef.png) no-repeat center center #4f7cfc;
  480. background-size: 40%40%;
  481. cursor: pointer
  482. }
  483. .fk_service_ax:hover .fk_service_ax_cont {
  484. display: block;
  485. opacity: 1;
  486. transition: linear .2s;
  487. animation-name: fade-in;
  488. animation-duration: .3s;
  489. animation-iteration-count: 1;
  490. animation-delay: 0s
  491. }
  492. .fk_service_ax_cont {
  493. width: 264px;
  494. height: 40px;
  495. line-height: 40px;
  496. background: #fff;
  497. border-radius: 5px;
  498. right: 62px;
  499. text-align: center;
  500. position: absolute;
  501. display: none;
  502. border: 1px solid #e1e6ec
  503. }
  504. /*爱心 新增图标->zmki 结束*/
  505. /* 点赞 新增图标->zmki 开始*/
  506. .fk_service_dz {
  507. background: url(https://a-oss.zmki.cn/2019/20191218-3d077e8df0bf0.png) no-repeat center center #fff;
  508. background-size: 50%50%;
  509. }
  510. .fk_service_dz:hover {
  511. border: 0;
  512. background: url(https://a-oss.zmki.cn/2019/20191218-986a9393f3e9e.png) no-repeat center center #4f7cfc;
  513. background-size: 50%50%;
  514. cursor: pointer
  515. }
  516. .fk_service_dz:hover .fk_service_dz_cont {
  517. display: block;
  518. opacity: 1;
  519. transition: linear .2s;
  520. animation-name: fade-in;
  521. animation-duration: .3s;
  522. animation-iteration-count: 1;
  523. animation-delay: 0s
  524. }
  525. .fk_service_dz_cont {
  526. width: 264px;
  527. height: 40px;
  528. line-height: 40px;
  529. background: #fff;
  530. border-radius: 5px;
  531. right: 62px;
  532. text-align: center;
  533. position: absolute;
  534. display: none;
  535. border: 1px solid #e1e6ec
  536. }
  537. /*点赞 新增图标->zmki 结束*/
  538. /* 手机端自动隐藏 开始 */
  539. @media screen and (max-width: 1221px) { .wapnone{display:none; }
  540. }
  541. /* 手机端自动隐藏 结束 */
  542. </style>

文章来源:https://www.zmki.cn/5003.html

文章由官网发布,如若转载,请注明出处:https://www.veimoz.com/140
10 条评论
1.1w

发表评论

已有 10 条评论

  1. 2020-10-24 12:34

    [...]转载自:小灯泡[...]

  2. zmki     Win 10 /    Chrome
    2020-04-15 10:10

    感谢转载 转载请注明啦:彩虹:

    1. 小鞠     Win 7 /    Chrome
      2020-05-20 23:30

      @zmki

      钻钻

    2. 【管理员】Vv     Win 7 /    Chrome
      2020-04-15 10:21

      @zmki

      已经加上去了:咖啡::咖啡:

  3. Muze     Win 10 /    Chrome
    2020-03-27 21:35

    我一直在找这种简约高端的侧边导航,没想到这里居然有,真棒。感谢博主整理。
    但是博主提供的代码一大串的,用起来不是很方便,我做成了一个单页,方便大家修改和复制:
    https://www.npc.ink/14503.html
    但我也发现了个问题:CSS中的“font-family: "寰蒋闆呴粦";”我在您您另外一篇文章提供的演示站中看到的也是这样,是我看错了嘛?望指点。

    1. Muze     Win 10 /    Chrome
      2020-03-30 07:20

      @Muze

      谢谢:ojbk:

    2. 【管理员】Vv     Win 7 /    Chrome
      2020-03-29 17:04

      @Muze

      应该是复制粘贴的时候,没注意到,而且主题本身是包含了,所以没怎么影响 感谢改正

    3. jclser     Win 7 /    FireFox
      2020-03-29 14:09

      @Muze

      font-family:"微软雅黑";

    4. Muze     Win 10 /    Chrome
      2020-03-27 21:37

      @Muze

      但是博主提供的代码一大串的,用起来不是很方便,我做成了一个单页,方便大家修改和复制。
      网址如下:
      https://www.npc.ink/14503.html

      1. 小爱博客     Win 10 /    Chrome
        2020-10-01 12:39

        @Muze

        已接入,不错 https://www.51ceo.wang

!