From ba5afc95710cc1d5946d8105a85f663b80a0bfd4 Mon Sep 17 00:00:00 2001 From: streakingman Date: Thu, 22 Sep 2022 14:18:23 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9D=A5=E6=BA=90=E5=A3=B0=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- src/App.tsx | 9 +++---- src/{themes => }/BeiAn.tsx | 0 src/Info.tsx | 49 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+), 7 deletions(-) rename src/{themes => }/BeiAn.tsx (100%) create mode 100644 src/Info.tsx diff --git a/README.md b/README.md index e6581d4..2c45fd3 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ vite+react 实现,欢迎 star、issue、pr、fork(尽量标注原仓库地 - [ ] 性能优化 - [x] BGM/音效 - [ ] ~~点击时的缓冲队列,优化交互动画效果~~ -- [ ] 该游戏似乎涉嫌抄袭,考证后补充来源说明 +- [x] 该游戏似乎涉嫌抄袭,考证后补充来源说明 - [ ] 桌面应用 ## 二次开发 diff --git a/src/App.tsx b/src/App.tsx index d1cc4bd..bdf0675 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -15,7 +15,8 @@ import { fishermanTheme } from './themes/fisherman'; import { jinlunTheme } from './themes/jinlun'; import { ikunTheme } from './themes/ikun'; import { pddTheme } from './themes/pdd'; -import { BeiAn } from './themes/BeiAn'; +import { BeiAn } from './BeiAn'; +import { Info } from './Info'; // 主题 const themes = [defaultTheme, fishermanTheme, jinlunTheme, ikunTheme, pddTheme]; @@ -459,11 +460,7 @@ const App: FC = () => { {/**/} -

- - 累计访问:次 - -

+ diff --git a/src/themes/BeiAn.tsx b/src/BeiAn.tsx similarity index 100% rename from src/themes/BeiAn.tsx rename to src/BeiAn.tsx diff --git a/src/Info.tsx b/src/Info.tsx new file mode 100644 index 0000000..e286e8f --- /dev/null +++ b/src/Info.tsx @@ -0,0 +1,49 @@ +import React, { FC } from 'react'; + +export const Info: FC = () => { + return ( + <> +

+ + 累计访问:次 + +

+

+ bgm素材: + + 洛天依,言和原创《普通DISCO》 + + 、 + + 贫民百万歌星 + + 、 + + 只因你太美 + +

+

+ 玩法来源➡️羊了个羊➡️ + + 3 Tiles + +

+ + ); +};