mirror of
https://ghproxy.com/https://github.com/StreakingMan/solvable-sheep-game
synced 2025-05-25 09:46:07 +08:00
docs: update README.md
This commit is contained in:
parent
ae8c22b1be
commit
0612149a5b
13
README.md
13
README.md
|
@ -9,14 +9,16 @@
|
||||||
|
|
||||||
- 弹出:弹出队列左侧第一个,无限次数
|
- 弹出:弹出队列左侧第一个,无限次数
|
||||||
- 撤销:撤销上一次操作,无限次数
|
- 撤销:撤销上一次操作,无限次数
|
||||||
- 洗牌:哗啦哗啦
|
- 洗牌:哗啦哗啦,无限次数
|
||||||
- 关卡:50关玩到双,可直接跳
|
- 关卡:50 关玩到爽,可直接跳
|
||||||
|
|
||||||
|
开心就好 😄
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
|
|
||||||
vite+react 实现,欢迎 star、issue、pr、fork
|
vite+react 实现,欢迎 star、issue、pr、fork(尽量标注原仓库地址)
|
||||||
|
|
||||||
## Todo List
|
## Todo List
|
||||||
|
|
||||||
|
@ -25,5 +27,10 @@ vite+react 实现,欢迎 star、issue、pr、fork
|
||||||
- [ ] UI/UX 优化
|
- [ ] UI/UX 优化
|
||||||
- [ ] 多主题
|
- [ ] 多主题
|
||||||
- [ ] 计时
|
- [ ] 计时
|
||||||
|
- [ ] 性能优化
|
||||||
- [ ] 点击时的缓冲队列,优化交互动画效果
|
- [ ] 点击时的缓冲队列,优化交互动画效果
|
||||||
- [ ] 该游戏似乎涉嫌抄袭,考证后补充来源说明
|
- [ ] 该游戏似乎涉嫌抄袭,考证后补充来源说明
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
[GNU GENERAL PUBLIC LICENSE Version 3](LICENSE.md)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "solvable-sheep-game",
|
"name": "solvable-sheep-game",
|
||||||
"private": true,
|
"private": false,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -36,5 +36,6 @@
|
||||||
"stylelint-config-standard-scss": "^5.0.0",
|
"stylelint-config-standard-scss": "^5.0.0",
|
||||||
"typescript": "^4.6.4",
|
"typescript": "^4.6.4",
|
||||||
"vite": "^3.1.0"
|
"vite": "^3.1.0"
|
||||||
}
|
},
|
||||||
|
"license": "SEE LICENSE IN LICENSE.md"
|
||||||
}
|
}
|
||||||
|
|
|
@ -316,9 +316,10 @@ const App: FC = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<h2>
|
<h2>有解的羊了个羊(DEMO)</h2>
|
||||||
有解的羊了个羊(DEMO) <GithubIcon />
|
<h6>
|
||||||
</h2>
|
<GithubIcon />
|
||||||
|
</h6>
|
||||||
<h3>Level: {level} </h3>
|
<h3>Level: {level} </h3>
|
||||||
|
|
||||||
<div className="app">
|
<div className="app">
|
||||||
|
|
|
@ -7,6 +7,7 @@ export const GithubIcon: FC = () => {
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer"
|
rel="noreferrer"
|
||||||
>
|
>
|
||||||
|
点个✨不迷路 @StreakingMan
|
||||||
<svg
|
<svg
|
||||||
height="24"
|
height="24"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
|
@ -15,6 +16,7 @@ export const GithubIcon: FC = () => {
|
||||||
width="24"
|
width="24"
|
||||||
data-view-component="true"
|
data-view-component="true"
|
||||||
className="octicon octicon-mark-github v-align-middle"
|
className="octicon octicon-mark-github v-align-middle"
|
||||||
|
fill="currentColor"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
fillRule="evenodd"
|
fillRule="evenodd"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user