mirror of
https://ghproxy.com/https://github.com/StreakingMan/solvable-sheep-game
synced 2025-07-08 06:28:13 +08:00
chore: 来源声明
This commit is contained in:
parent
0eaf5333f6
commit
ba5afc9571
|
@ -49,7 +49,7 @@ vite+react 实现,欢迎 star、issue、pr、fork(尽量标注原仓库地
|
|||
- [ ] 性能优化
|
||||
- [x] BGM/音效
|
||||
- [ ] ~~点击时的缓冲队列,优化交互动画效果~~
|
||||
- [ ] 该游戏似乎涉嫌抄袭,考证后补充来源说明
|
||||
- [x] 该游戏似乎涉嫌抄袭,考证后补充来源说明
|
||||
- [ ] 桌面应用
|
||||
|
||||
## 二次开发
|
||||
|
|
|
@ -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 = () => {
|
|||
{/*<button onClick={test}>测试</button>*/}
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<span id="busuanzi_container_site_pv">
|
||||
累计访问:<span id="busuanzi_value_site_pv"></span>次
|
||||
</span>
|
||||
</p>
|
||||
<Info />
|
||||
|
||||
<BeiAn />
|
||||
|
||||
|
|
49
src/Info.tsx
Normal file
49
src/Info.tsx
Normal file
|
@ -0,0 +1,49 @@
|
|||
import React, { FC } from 'react';
|
||||
|
||||
export const Info: FC = () => {
|
||||
return (
|
||||
<>
|
||||
<p>
|
||||
<span id="busuanzi_container_site_pv">
|
||||
累计访问:<span id="busuanzi_value_site_pv"></span>次
|
||||
</span>
|
||||
</p>
|
||||
<p>
|
||||
bgm素材:
|
||||
<a
|
||||
href="https://www.bilibili.com/video/BV1zs411S7sz/"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
洛天依,言和原创《普通DISCO》
|
||||
</a>
|
||||
、
|
||||
<a
|
||||
href="https://music.163.com/#/song?id=135022"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
贫民百万歌星
|
||||
</a>
|
||||
、
|
||||
<a
|
||||
href="https://y.qq.com/n/ryqq/songDetail/0020Nusb3QJGn9"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
只因你太美
|
||||
</a>
|
||||
</p>
|
||||
<p>
|
||||
玩法来源➡️羊了个羊➡️
|
||||
<a
|
||||
href="https://play.google.com/store/apps/details?id=tile.master.connect.matching.game"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
3 Tiles
|
||||
</a>
|
||||
</p>
|
||||
</>
|
||||
);
|
||||
};
|
Loading…
Reference in New Issue
Block a user