docs(README): change new Screenshot

This commit is contained in:
KaiyiWing
2021-03-22 20:51:41 +08:00
parent 90c5cce11e
commit 9d80da4a7d
3 changed files with 5 additions and 3 deletions

View File

@@ -18,7 +18,7 @@
</p>
<div align=center>
<img src="https://github.com/Kaiyiwing/qwerty-learner/blob/master/docs/Screenshot.png"/>
<img src="docs/Screenshot.png"/>
</div>
## 📸 在线访问

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 279 KiB

View File

@@ -179,7 +179,8 @@ const App: React.FC = () => {
<div>
<Word
key={`word-${wordList.words[order].name}-${order}`}
word={wordList.words[order].name}
// word={wordList.words[order].name}
word={'melatonin'}
onFinish={onFinish}
isStart={isStart}
wordVisible={switcherState.wordVisible}
@@ -187,7 +188,8 @@ const App: React.FC = () => {
{switcherState.phonetic && (wordList.words[order].usphone || wordList.words[order].ukphone) && (
<Phonetic usphone={wordList.words[order].usphone} ukphone={wordList.words[order].ukphone} />
)}
<Translation key={`trans-${wordList.words[order].name}`} trans={wordList.words[order].trans.join('')} />
{/* <Translation key={`trans-${wordList.words[order].name}`} trans={wordList.words[order].trans.join('')} /> */}
<Translation key={`trans-${wordList.words[order].name}`} trans={'褪黑激素'} />
</div>
<Speed correctCount={correctCount} inputCount={inputCount} isStart={isStart} />
</div>