ive totally forgot how to use git all i can do is pray for Admin lets gooo
All checks were successful
Deploy Online Pages / Pages-Deployment (push) Successful in 26s
All checks were successful
Deploy Online Pages / Pages-Deployment (push) Successful in 26s
This commit is contained in:
parent
3339aff375
commit
cf8bf63f3a
@ -4,10 +4,9 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<title>Enjoy your Kuli</title>
|
||||
<title>苦力</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="clsChg">N</div>
|
||||
<div id="hamburger"><span></span><span></span><span></span></div>
|
||||
<div id="scoreA">
|
||||
<img src="../src/circle.svg" width="50px" height="50px" alt="○" >
|
||||
@ -33,22 +32,20 @@
|
||||
</table>
|
||||
<div id="result">
|
||||
<div id="scoreB">
|
||||
<img src="../src/circle.svg" width="20px" height="20px" alt="○" >
|
||||
<img src="src/circle.svg" width="20px" height="20px" alt="○" >
|
||||
<span id="corrCntB"></span>
|
||||
<img src="../src/cross.svg" width="20px" height="20px" alt="×">
|
||||
<img src="src/cross.svg" width="20px" height="20px" alt="×">
|
||||
<span id="wrongCntB"></span>
|
||||
</div>
|
||||
<div id="perfect">Perfect!</div>
|
||||
<div id="perfect">完美啊!</div>
|
||||
<div id="imperfect"></div>
|
||||
</div>
|
||||
<div id="replay">Replay</div>
|
||||
<a href="../spell-it" class="playAnother">Go Spell It</a>
|
||||
<div id="replay">重新开始</div>
|
||||
</body>
|
||||
<footer>→Play <a href="../spell-it">Kraft of Spelling</a></footer>
|
||||
<audio src="../../src/startQuiz.mp3" id="startSound"></audio>
|
||||
<audio src="../../src/correct.mp3" id="corrSound"></audio>
|
||||
<audio src="../../src/correct2.mp3" id="corrSound2"></audio>
|
||||
<audio src="../../src/wrong.mp3" id="wrongSound"></audio>
|
||||
<audio src="src/correct.wav" id="corrSound"></audio>
|
||||
<audio src="src/correct2.mp3" id="corrSound2"></audio>
|
||||
<audio src="src/wrong.wav" id="wrongSound"></audio>
|
||||
<script src="src/words_list.js"></script>
|
||||
<script src="script.js"></script>
|
||||
</html>
|
@ -1,6 +1,7 @@
|
||||
let wordClass = "noun";
|
||||
let target = words(wordClass);
|
||||
let target = words();
|
||||
let targetLen = target.length;
|
||||
//単語リストの長さ
|
||||
console.log(targetLen);
|
||||
|
||||
let body = document.getElementsByTagName("body")[0];
|
||||
@ -19,34 +20,41 @@ let wrongCntElemB = document.getElementById("wrongCntB");
|
||||
let perfect = document.getElementById("perfect");
|
||||
let imperfect = document.getElementById("imperfect");
|
||||
let replay = document.getElementById("replay");
|
||||
let playAnother = document.getElementsByClassName("playAnother")[0];
|
||||
let footer = document.getElementsByTagName("footer")[0];
|
||||
let startSound = document.getElementById("startSound");
|
||||
let corrSound = document.getElementById("corrSound");
|
||||
let corrSound2 = document.getElementById("corrSound2");
|
||||
let wrongSound = document.getElementById("wrongSound");
|
||||
corrSound.volume = 0.5;
|
||||
wrongSound.volume = 0.5;
|
||||
|
||||
let curWordIdx;
|
||||
let curCorrIdx;
|
||||
//quiz()の返り値で指定される問題語番号と四択正答番号
|
||||
let isClicked = [false, false, false, false];
|
||||
let wordIdx;
|
||||
let tmpWordIdx;
|
||||
//関数内の問題語番号の運用
|
||||
let wordTxt;
|
||||
//問題語のテキスト
|
||||
let corrDict;
|
||||
//問題語の個人情報リスト
|
||||
let corrIdx;
|
||||
let wrongIdx = [];
|
||||
let tmpWrongIdx;
|
||||
let cnt = 0;
|
||||
let corrCnt = 0;
|
||||
let wrongCnt = 0;
|
||||
//正答数・誤答数の計上(のちElemへ)
|
||||
let wrongs = [];
|
||||
let wrongsLen;
|
||||
let mistakenWordIdx;
|
||||
let mistakenWordMeaning;
|
||||
let mistakenWordMeaningLen;
|
||||
let mistakenWordMeaningTxt;
|
||||
let mistakenWordPronunc;
|
||||
let mistakenWordPronuncLen;
|
||||
let mistakenWordPronuncTxt;
|
||||
let wrongsTxt;
|
||||
|
||||
function randElem(arr) {
|
||||
//与配列からランダムに要素を一つ取り出して返す関数
|
||||
return arr[Math.floor(Math.random() * arr.length)];
|
||||
}
|
||||
function setQuiz() {
|
||||
@ -54,22 +62,21 @@ function setQuiz() {
|
||||
display.style.display = "table";
|
||||
result.style.display = "none";
|
||||
replay.style.display = "none";
|
||||
playAnother.style.display = "none";
|
||||
footer.style.display = "inline";
|
||||
}
|
||||
function removeQuiz() {
|
||||
display.style.display = "none";
|
||||
result.style.display = "block";
|
||||
replay.style.display = "block";
|
||||
playAnother.style.display = "block";
|
||||
footer.style.display = "none";
|
||||
}
|
||||
|
||||
function quiz() {
|
||||
if (cnt == 20) {
|
||||
//終了処理
|
||||
removeQuiz();
|
||||
cnt = 0;
|
||||
wrongsLen = wrongs.length;
|
||||
if (wrongsLen == 0) {
|
||||
//perfect画面
|
||||
perfect.style.display = "block";
|
||||
imperfect.style.display = "none";
|
||||
scoreElemA.style.display = "none";
|
||||
@ -79,6 +86,7 @@ function quiz() {
|
||||
perfect.style.animation = "gaming 2s linear infinite";
|
||||
return [null, null];
|
||||
} else {
|
||||
//imperfect画面
|
||||
perfect.style.display = "none";
|
||||
imperfect.style.display = "block";
|
||||
scoreElemA.style.display = "none";
|
||||
@ -87,56 +95,71 @@ function quiz() {
|
||||
wrongCntElemB.innerText = wrongCnt;
|
||||
wrongsTxt = "";
|
||||
for (let i = 0; i < wrongsLen; ++i) {
|
||||
//誤答の一覧の表示
|
||||
mistakenWordIdx = wrongs[i][0];
|
||||
mistakenWordMeaning = target[mistakenWordIdx]["meaning"];
|
||||
mistakenWordMeaningLen = mistakenWordMeaning.length;
|
||||
mistakenWordMeaningTxt = "'" + mistakenWordMeaning[0] + "'";
|
||||
if (mistakenWordMeaningLen != 0) {
|
||||
for (let i = 1; i < mistakenWordMeaningLen; ++i) {
|
||||
if (i == mistakenWordMeaningLen - 1) {
|
||||
mistakenWordMeaningTxt += "</span> or <span style=\"color: red;\">'" + mistakenWordMeaning[i] + "'";
|
||||
//間違い方リストから正答番号を取り出した
|
||||
mistakenWordPronunc = target[mistakenWordIdx]["pronunc"];
|
||||
mistakenWordPronuncLen = mistakenWordPronunc.length;
|
||||
console.log(mistakenWordPronunc);
|
||||
mistakenWordPronuncTxt = "‘" + mistakenWordPronunc[0] + "’";
|
||||
if (mistakenWordPronuncLen != 0) {
|
||||
for (let i = 1; i < mistakenWordPronuncLen; ++i) {
|
||||
//多義語の処理らしい
|
||||
if (i == mistakenWordPronuncLen - 1) {
|
||||
mistakenWordPronuncTxt += "</span> or <span style=\"color: red;\">'" + mistakenWordPronunc[i] + "'";
|
||||
} else {
|
||||
mistakenWordMeaningTxt += "</span>, <span style=\"color: red;\">'" + mistakenWordMeaning[i] + "'";
|
||||
mistakenWordPronuncTxt += "</span>, <span style=\"color: red;\">'" + mistakenWordPronunc[i] + "'";
|
||||
}
|
||||
}
|
||||
}
|
||||
wrongsTxt += "<span style=\"color: red;\">'" + target[mistakenWordIdx]["word"] + "'</span>"
|
||||
+ " is <span style=\"color: red;\">"
|
||||
+ mistakenWordMeaningTxt + "</span>, not '" + wrongs[i][1] + "'.<br>"
|
||||
wrongsTxt += "<span style=\"color: red;\">‘" + target[mistakenWordIdx]["word"] + "’</span>"
|
||||
+ " 是 <span style=\"color: red;\">"
|
||||
+ mistakenWordPronuncTxt + "</span>,不是 ‘" + wrongs[i][1] + "’。<br>"
|
||||
}
|
||||
imperfect.innerHTML = wrongsTxt.slice(0, -4);
|
||||
return [null, null];
|
||||
}
|
||||
} else {
|
||||
//継続処理
|
||||
setQuiz();
|
||||
tmpWordIdx = Math.floor(Math.random() * targetLen);
|
||||
while (tmpWordIdx == wordIdx) {
|
||||
//連続同一問題を排除する
|
||||
tmpWordIdx = Math.floor(Math.random() * targetLen);
|
||||
}
|
||||
wordIdx = tmpWordIdx;
|
||||
corrIdx = Math.floor(Math.random() * 4);
|
||||
console.log(corrIdx);
|
||||
//問題語と正答番号をリフレッシュした
|
||||
for (let i = 0; i < 4; ++i) {
|
||||
//誤答選択肢を作る
|
||||
if (i == corrIdx) continue;
|
||||
tmpWrongIdx = Math.floor(Math.random() * targetLen);
|
||||
while (wrongIdx.includes(tmpWrongIdx) || tmpWrongIdx == wordIdx) {
|
||||
//以前の誤答集に含まれる、または正答と同一であるような誤答を省く
|
||||
tmpWrongIdx = Math.floor(Math.random() * targetLen);
|
||||
}
|
||||
wrongIdx.push(tmpWrongIdx);
|
||||
ans[i].innerText = randElem(target[tmpWrongIdx]["meaning"]);
|
||||
//誤答集に今回使った誤答を追加した
|
||||
ans[i].innerText = randElem(target[tmpWrongIdx]["pronunc"]);
|
||||
//ランダム列、ピンイン行の要素を誤答ゾーンに代入した
|
||||
}
|
||||
wrongIdx = [];
|
||||
//誤答集がリセットされた
|
||||
corrDict = target[wordIdx]
|
||||
wordTxt = corrDict["word"];
|
||||
//実装されなかったらしいジェンダーの表示機能
|
||||
if (corrDict["gender_is_distinctive"]) wordTxt += " (" + corrDict["gender"] + ")";
|
||||
word.innerText = wordTxt;
|
||||
pronunc.innerText = "[" + corrDict["pronunc"] + "]";
|
||||
ans[corrIdx].innerText = randElem(corrDict["meaning"]);
|
||||
pronunc.innerText = "" + corrDict["meaning"] + "";
|
||||
ans[corrIdx].innerText = randElem(corrDict["pronunc"]);
|
||||
//多義語ならば意味の一つだけを表示する仕様だったらしい
|
||||
cnt++;
|
||||
return [wordIdx, corrIdx]
|
||||
}
|
||||
}
|
||||
function start() {
|
||||
//初期値設定
|
||||
[curWordIdx, curCorrIdx] = quiz();
|
||||
startSound.currentTime = 0;
|
||||
startSound.play();
|
||||
@ -152,6 +175,7 @@ function start() {
|
||||
start();
|
||||
ans[0].addEventListener("click", () => {
|
||||
if (curCorrIdx == 0) {
|
||||
//正解の場合
|
||||
if (cnt == 20) {
|
||||
corrSound2.play();
|
||||
} else {
|
||||
@ -163,13 +187,16 @@ ans[0].addEventListener("click", () => {
|
||||
[curWordIdx, curCorrIdx] = quiz();
|
||||
isClicked = [false, false, false, false];
|
||||
} else {
|
||||
//間違いの場合
|
||||
wrongSound.currentTime = 0;
|
||||
wrongSound.play();
|
||||
if (isClicked[0]) return;
|
||||
//同じ誤答の間違いをカウントしないようにした
|
||||
wrongCnt++;
|
||||
wrongCntElemA.innerText = wrongCnt;
|
||||
isClicked[0] = true;
|
||||
wrongs.push([curWordIdx, ans[0].textContent]);
|
||||
//間違い方リストに正答番号と選んだ誤答が追加された
|
||||
}
|
||||
})
|
||||
ans[1].addEventListener("click", () => {
|
||||
|
1
Kuli/src/circle.svg
Normal file
1
Kuli/src/circle.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" style="overflow:visible" viewBox="-250 -250 500 500" height="500px" width="500px"><rect fill-opacity="0" fill="rgb(0,0,0)" height="500" width="500" y="-250" x="-250" /><svg version="1.1" y="-250" x="-250" viewBox="-250 -250 500 500" height="500px" width="500px" style="overflow:visible"><g transform="rotate(0,0,0)" stroke-linejoin="round" fill="#fff"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="30" stroke-opacity="1" stroke="rgb(255,0,0)" fill="none" d="m195 0a195 195 0 0 1-195 195a195 195 0 0 1-195-195a195 195 0 0 1 195-195a195 195 0 0 1 195 195z" /></g></svg></svg>
|
After Width: | Height: | Size: 741 B |
BIN
Kuli/src/correct.wav
Normal file
BIN
Kuli/src/correct.wav
Normal file
Binary file not shown.
BIN
Kuli/src/correct2.mp3
Normal file
BIN
Kuli/src/correct2.mp3
Normal file
Binary file not shown.
1
Kuli/src/cross.svg
Normal file
1
Kuli/src/cross.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" style="overflow:visible" viewBox="-250 -250 500 500" height="500px" width="500px"><rect fill-opacity="0" fill="rgb(0,0,0)" height="500" width="500" y="-250" x="-250" /><svg version="1.1" y="-250" x="-250" viewBox="-250 -250 500 500" height="500px" width="500px" style="overflow:visible"><g transform="rotate(45,0,0)" stroke-linejoin="round" fill="#fff"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="37" stroke-opacity="1" stroke="rgb(34,106,216)" fill="none" d="m0-179.7152v359.43" /><path stroke-linecap="round" stroke-linejoin="round" stroke-width="37" stroke-opacity="1" stroke="rgb(34,106,216)" fill="none" d="m-179.7152 0h359.43" /></g></svg></svg>
|
After Width: | Height: | Size: 821 B |
@ -1,3 +1,540 @@
|
||||
function words() {
|
||||
|
||||
return[
|
||||
{ "word": "你", "meaning": ["あなた"], "pronunc": ["nı̌ "] },
|
||||
{ "word": "好", "meaning": ["良い"], "pronunc": ["hǎo"] },
|
||||
{ "word": "我", "meaning": ["わたし"], "pronunc": ["wǒ"] },
|
||||
{ "word": "叫", "meaning": ["~という名前である"], "pronunc": ["jiào"] },
|
||||
{ "word": "贵姓", "meaning": ["お名前"], "pronunc": ["guì xìng"] },
|
||||
{ "word": "姓", "meaning": ["名字"], "pronunc": ["xìng"] },
|
||||
{ "word": "认识", "meaning": ["知り合う"], "pronunc": ["rèn shi"] },
|
||||
{ "word": "很", "meaning": ["とても"], "pronunc": ["hěn"] },
|
||||
{ "word": "高兴", "meaning": ["うれしい"], "pronunc": ["gāo xìng"] },
|
||||
{ "word": "请", "meaning": ["~してください"], "pronunc": ["qǐng"] },
|
||||
{ "word": "多", "meaning": ["多い"], "pronunc": ["duō"] },
|
||||
{ "word": "关照", "meaning": ["~の世話をする"], "pronunc": ["guān zhào"] },
|
||||
{ "word": "您", "meaning": ["あなたさま"], "pronunc": ["nín"] },
|
||||
{ "word": "他/她/它", "meaning": ["彼/彼女/それ"], "pronunc": ["tā"] },
|
||||
{ "word": "谁", "meaning": ["だれ"], "pronunc": ["shéi/shúi"] },
|
||||
{ "word": "咱们", "meaning": ["わたしたち"], "pronunc": ["zánmen"] },
|
||||
{ "word": "伊藤", "meaning": ["伊藤(固有名詞)"], "pronunc": ["Yīténg"] },
|
||||
{ "word": "王兰", "meaning": ["王藍(固有名詞)"], "pronunc": ["Wáng Lán"] },
|
||||
{ "word": "名字", "meaning": ["名前"], "pronunc": ["míngzi"] },
|
||||
{ "word": "什么", "meaning": ["なに"], "pronunc": ["shénme"] },
|
||||
{ "word": "汉语", "meaning": ["中国語"], "pronunc": ["Hànyǔ"] },
|
||||
{ "word": "学", "meaning": ["~を学ぶ"], "pronunc": ["xué"] },
|
||||
{ "word": "去", "meaning": ["~に行く"], "pronunc": ["qù"] },
|
||||
{ "word": "中国", "meaning": ["中国"], "pronunc": ["Zhōngguó"] },
|
||||
{ "word": "李先生", "meaning": ["李さん"], "pronunc": ["Lǐ xiānsheng"] },
|
||||
{ "word": "美国", "meaning": ["アメリカ"], "pronunc": ["Měiguó"] },
|
||||
{ "word": "图书馆", "meaning": ["図書館"], "pronunc": ["túshūguǎn"] },
|
||||
{ "word": "学校", "meaning": ["学校"], "pronunc": ["xuéxiào"] },
|
||||
{ "word": "来", "meaning": ["~に来る"], "pronunc": ["lái"] },
|
||||
{ "word": "公司", "meaning": ["会社"], "pronunc": ["gōngsī"] },
|
||||
{ "word": "说", "meaning": ["~をしゃべる"], "pronunc": ["shuō"] },
|
||||
{ "word": "日语", "meaning": ["日本語"], "pronunc": ["Rìyǔ"] },
|
||||
{ "word": "看", "meaning": ["~を見る"], "pronunc": ["kàn"] },
|
||||
{ "word": "书", "meaning": ["本"], "pronunc": ["shū"] },
|
||||
{ "word": "吃", "meaning": ["~を食べる"], "pronunc": ["chī"] },
|
||||
{ "word": "饭", "meaning": ["ご飯"], "pronunc": ["fàn"] },
|
||||
{ "word": "喝", "meaning": ["~を飲む"], "pronunc": ["hē"] },
|
||||
{ "word": "茶", "meaning": ["お茶"], "pronunc": ["chá"] },
|
||||
{ "word": "上", "meaning": ["上", "前の"], "pronunc": ["shàng"] },
|
||||
{ "word": "下", "meaning": ["下", "次の"], "pronunc": ["xià"] },
|
||||
{ "word": "课", "meaning": ["授業"], "pronunc": ["kè"] },
|
||||
{ "word": "写", "meaning": ["~を書く"], "pronunc": ["xiě"] },
|
||||
{ "word": "汉字", "meaning": ["漢字"], "pronunc": ["Hànzì"] },
|
||||
{ "word": "念", "meaning": ["音読する"], "pronunc": ["niàn"] },
|
||||
{ "word": "课文", "meaning": ["テキスト"], "pronunc": ["kèwén"] },
|
||||
{ "word": "听", "meaning": ["~を聴く"], "pronunc": ["tīng"] },
|
||||
{ "word": "音乐", "meaning": ["音楽"], "pronunc": ["yīnyuè"] },
|
||||
{ "word": "回", "meaning": ["~に帰る"], "pronunc": ["huí"] },
|
||||
{ "word": "家", "meaning": ["家"], "pronunc": ["jiā"] },
|
||||
{ "word": "坐", "meaning": ["~に座る"], "pronunc": ["zuò"] },
|
||||
{ "word": "地铁", "meaning": ["地下鉄"], "pronunc": ["dìtiě"] },
|
||||
{ "word": "骑", "meaning": ["~に乗る"], "pronunc": ["qí"] },
|
||||
{ "word": "自行车", "meaning": ["自転車"], "pronunc": ["zìxíngchē"] },
|
||||
{ "word": "是", "meaning": ["~である"], "pronunc": ["shì"] },
|
||||
{ "word": "学生", "meaning": ["学生"], "pronunc": ["xuésheng"] },
|
||||
{ "word": "京都", "meaning": ["京都(固有名詞)"], "pronunc": ["Jīngdū"] },
|
||||
{ "word": "大学", "meaning": ["大学"], "pronunc": ["dàxué"] },
|
||||
{ "word": "也", "meaning": ["~もまた"], "pronunc": ["yě"] },
|
||||
{ "word": "北京", "meaning": ["北京(固有名詞)"], "pronunc": ["Běijīng"] },
|
||||
{ "word": "系", "meaning": ["専攻"], "pronunc": ["xì"] },
|
||||
{ "word": "那 (感動詞)", "meaning": ["じゃあ"], "pronunc": ["nà"] },
|
||||
{ "word": "天津", "meaning": ["天津(固有名詞)"], "pronunc": ["Tiānjīn"] },
|
||||
{ "word": "词典", "meaning": ["辞典"], "pronunc": ["cídiǎn"] },
|
||||
{ "word": "老师", "meaning": ["先生"], "pronunc": ["lǎoshī"] },
|
||||
{ "word": "朋友", "meaning": ["友達"], "pronunc": ["péngyou"] },
|
||||
{ "word": "日本人", "meaning": ["日本人"], "pronunc": ["Rìběnrén"] },
|
||||
{ "word": "大学生", "meaning": ["大学生"], "pronunc": ["dàxuéshenḡ"] },
|
||||
{ "word": "职员", "meaning": ["職員"], "pronunc": ["zhíyuán"] },
|
||||
{ "word": "小刘", "meaning": ["刘ちゃん(固有名詞)"], "pronunc": ["Xiǎo Liǔ"] },
|
||||
{ "word": "都", "meaning": ["みんな"], "pronunc": ["dōu"] },
|
||||
{ "word": "爷爷", "meaning": ["(父方の)祖父"], "pronunc": ["yéye"] },
|
||||
{ "word": "奶奶", "meaning": ["(父方の)祖母"], "pronunc": ["nǎinai"] },
|
||||
{ "word": "姥爷", "meaning": ["(母方の)祖父"], "pronunc": ["lǎoye"] },
|
||||
{ "word": "姥姥", "meaning": ["(母方の)祖母"], "pronunc": ["lǎolao"] },
|
||||
{ "word": "爸爸", "meaning": ["父"], "pronunc": ["bàba"] },
|
||||
{ "word": "妈妈", "meaning": ["母"], "pronunc": ["māma"] },
|
||||
{ "word": "哥哥", "meaning": ["兄"], "pronunc": ["gēge"] },
|
||||
{ "word": "姐姐", "meaning": ["姉"], "pronunc": ["jiějie"] },
|
||||
{ "word": "弟弟", "meaning": ["弟"], "pronunc": ["dìdi"] },
|
||||
{ "word": "妹妹", "meaning": ["妹"], "pronunc": ["mèimei"] },
|
||||
{ "word": "爱人", "meaning": ["妻"], "pronunc": ["àiren"] },
|
||||
{ "word": "儿子", "meaning": ["息子"], "pronunc": ["érzi"] },
|
||||
{ "word": "女儿", "meaning": ["娘"], "pronunc": ["nǚér"] },
|
||||
{ "word": "兄弟姐妹", "meaning": ["兄弟姉妹"], "pronunc": ["xiōngdìjiěmèi"] },
|
||||
{ "word": "刘燕", "meaning": ["刘燕(固有名詞)"], "pronunc": ["Liǔ Yàn"] },
|
||||
{ "word": "吗", "meaning": ["~か?"], "pronunc": ["ma"] },
|
||||
{ "word": "田中明香", "meaning": ["田中明香(固有名詞)"], "pronunc": ["Tiánzhōng Míngxiāng"] },
|
||||
{ "word": "不", "meaning": ["~ない"], "pronunc": ["bù"] },
|
||||
{ "word": "这儿/这里", "meaning": ["ここ"], "pronunc": ["zhèr/zhèli"] },
|
||||
{ "word": "景色", "meaning": ["景色"], "pronunc": ["jǐngsè"] },
|
||||
{ "word": "美", "meaning": ["美しい"], "pronunc": ["měi"] },
|
||||
{ "word": "那 (指示代詞)", "meaning": ["あれ"], "pronunc": ["nà"] },
|
||||
{ "word": "有名", "meaning": ["有名"], "pronunc": ["yǒumíng"] },
|
||||
{ "word": "公园", "meaning": ["公園"], "pronunc": ["gōngyuán"] },
|
||||
{ "word": "在", "meaning": ["(~が~に)ある"], "pronunc": ["zài"] },
|
||||
{ "word": "哪儿/哪里", "meaning": ["どこ"], "pronunc": ["nǎr/nǎli"] },
|
||||
{ "word": "对面", "meaning": ["向かい側"], "pronunc": ["duìmiàn"] },
|
||||
{ "word": "离", "meaning": ["~から"], "pronunc": ["lí"] },
|
||||
{ "word": "远", "meaning": ["遠い"], "pronunc": ["yuǎn"] },
|
||||
{ "word": "太", "meaning": ["とても"], "pronunc": ["tài"] },
|
||||
{ "word": "景山", "meaning": ["景山(固有名詞)"], "pronunc": ["Jǐngshān"] },
|
||||
{ "word": "故宫", "meaning": ["故宮(固有名詞)"], "pronunc": ["Gùgōng"] },
|
||||
{ "word": "角楼", "meaning": ["隅櫓"], "pronunc": ["Jiǎolóu"] },
|
||||
{ "word": "和", "meaning": ["~と"], "pronunc": ["hé"] },
|
||||
{ "word": "筒子河", "meaning": ["筒子河(固有名詞)"], "pronunc": ["Tǒngzihé"] },
|
||||
{ "word": "对了", "meaning": ["ところで"], "pronunc": ["Duì le"] },
|
||||
{ "word": "北门", "meaning": ["北門"], "pronunc": ["běimén"] },
|
||||
{ "word": "东京", "meaning": ["東京(固有名詞)"], "pronunc": ["Dōngjīng"] },
|
||||
{ "word": "工作", "meaning": ["仕事"], "pronunc": ["gōngzuò"] },
|
||||
{ "word": "最近", "meaning": ["最近"], "pronunc": ["zuìjìn"] },
|
||||
{ "word": "比较", "meaning": ["比較的"], "pronunc": ["bǐjiào"] },
|
||||
{ "word": "忙", "meaning": ["忙しい"], "pronunc": ["máng"] },
|
||||
{ "word": "近", "meaning": ["近い"], "pronunc": ["jìn"] },
|
||||
{ "word": "冷", "meaning": ["涼しい"], "pronunc": ["lěng"] },
|
||||
{ "word": "真", "meaning": ["とても"], "pronunc": ["zhēn"] },
|
||||
{ "word": "非常", "meaning": ["非常に"], "pronunc": ["fēicháng"] },
|
||||
{ "word": "特别", "meaning": ["とても"], "pronunc": ["tèbié"] },
|
||||
{ "word": "挺…的", "meaning": ["とても"], "pronunc": ["tǐng … de"] },
|
||||
{ "word": "太…了", "meaning": ["とても"], "pronunc": ["tài … le"] },
|
||||
{ "word": "有点儿", "meaning": ["ちょっと"], "pronunc": ["yǒudiǎnr"] },
|
||||
{ "word": "的", "meaning": ["~の"], "pronunc": ["de"] },
|
||||
{ "word": "这", "meaning": ["これ"], "pronunc": ["zhè"] },
|
||||
{ "word": "哪", "meaning": ["どれ"], "pronunc": ["nǎ"] },
|
||||
{ "word": "这个", "meaning": ["この"], "pronunc": ["zhège/zhèi ge"] },
|
||||
{ "word": "那个", "meaning": ["あの"], "pronunc": ["nàge/nèi ge"] },
|
||||
{ "word": "哪个", "meaning": ["どの"], "pronunc": ["nǎge/něi ge"] },
|
||||
{ "word": "这些", "meaning": ["これら"], "pronunc": ["zhè xiē/zhèi xiē"] },
|
||||
{ "word": "那些", "meaning": ["あれら"], "pronunc": ["nà xiē/nèi xiē"] },
|
||||
{ "word": "哪些", "meaning": ["*どれら"], "pronunc": ["nǎ xiē/něi xiē"] },
|
||||
{ "word": "那儿/那里", "meaning": ["あそこ"], "pronunc": ["nàr/nàli"] },
|
||||
{ "word": "买", "meaning": ["~を買う"], "pronunc": ["mǎi"] },
|
||||
{ "word": "教室", "meaning": ["教室"], "pronunc": ["jiàoshì"] },
|
||||
{ "word": "银行", "meaning": ["銀行"], "pronunc": ["yínháng"] },
|
||||
{ "word": "地方", "meaning": ["場所"], "pronunc": ["dìfang"] },
|
||||
{ "word": "酸", "meaning": ["酸っぱい"], "pronunc": ["suān"] },
|
||||
{ "word": "甜", "meaning": ["甘い"], "pronunc": ["tián"] },
|
||||
{ "word": "苦", "meaning": ["苦い"], "pronunc": ["kǔ"] },
|
||||
{ "word": "辣", "meaning": ["辛い"], "pronunc": ["là"] },
|
||||
{ "word": "咸", "meaning": ["しおからい"], "pronunc": ["xián"] },
|
||||
{ "word": "可爱", "meaning": ["かわいい"], "pronunc": ["kě'ài"] },
|
||||
{ "word": "便宜", "meaning": ["安い"], "pronunc": ["piányi"] },
|
||||
{ "word": "衣服", "meaning": ["衣服"], "pronunc": ["yīfu"] },
|
||||
{ "word": "咖啡", "meaning": ["コーヒー"], "pronunc": ["kāfēi"] },
|
||||
{ "word": "韩国", "meaning": ["韓国"], "pronunc": ["Hánguó"] },
|
||||
{ "word": "菜", "meaning": ["料理"], "pronunc": ["cài"] },
|
||||
{ "word": "蛋糕", "meaning": ["ケーキ"], "pronunc": ["dàngāo"] },
|
||||
{ "word": "坏", "meaning": ["悪い"], "pronunc": ["huài"] },
|
||||
{ "word": "大", "meaning": ["大きい"], "pronunc": ["dà"] },
|
||||
{ "word": "小", "meaning": ["小さい"], "pronunc": ["xiǎo"] },
|
||||
{ "word": "少", "meaning": ["少ない"], "pronunc": ["shǎo"] },
|
||||
{ "word": "高", "meaning": ["高い"], "pronunc": ["gāo"] },
|
||||
{ "word": "矮", "meaning": ["低い"], "pronunc": ["ǎi"] },
|
||||
{ "word": "低", "meaning": ["低い"], "pronunc": ["dī"] },
|
||||
{ "word": "快", "meaning": ["速い"], "pronunc": ["kuài"] },
|
||||
{ "word": "慢", "meaning": ["遅い"], "pronunc": ["màn"] },
|
||||
{ "word": "早", "meaning": ["早い"], "pronunc": ["zǎo"] },
|
||||
{ "word": "晚", "meaning": ["(時間が)遅い"], "pronunc": ["wǎn"] },
|
||||
{ "word": "重", "meaning": ["重い"], "pronunc": ["zhòng"] },
|
||||
{ "word": "轻", "meaning": ["軽い"], "pronunc": ["qīng"] },
|
||||
{ "word": "长", "meaning": ["長い"], "pronunc": ["cháng"] },
|
||||
{ "word": "短", "meaning": ["短い"], "pronunc": ["duǎn"] },
|
||||
{ "word": "热", "meaning": ["暑い"], "pronunc": ["rè"] },
|
||||
{ "word": "新", "meaning": ["新しい"], "pronunc": ["xīn"] },
|
||||
{ "word": "旧", "meaning": ["古い"], "pronunc": ["jiù"] },
|
||||
{ "word": "胖", "meaning": ["太っている"], "pronunc": ["pàng"] },
|
||||
{ "word": "瘦", "meaning": ["痩せている"], "pronunc": ["shòu"] },
|
||||
{ "word": "粗", "meaning": ["太い"], "pronunc": ["cū"] },
|
||||
{ "word": "细", "meaning": ["細い"], "pronunc": ["xì"] },
|
||||
{ "word": "宽", "meaning": ["広い"], "pronunc": ["kuān"] },
|
||||
{ "word": "窄", "meaning": ["狭い"], "pronunc": ["zhǎi"] },
|
||||
{ "word": "容易", "meaning": ["易しい"], "pronunc": ["róngyì"] },
|
||||
{ "word": "难", "meaning": ["難しい"], "pronunc": ["nán"] },
|
||||
{ "word": "贵", "meaning": ["(値段が)高い"], "pronunc": ["guì"] },
|
||||
{ "word": "想", "meaning": ["~したい"], "pronunc": ["xiǎng"] },
|
||||
{ "word": "现在", "meaning": ["現在"], "pronunc": ["xiànzài"] },
|
||||
{ "word": "就", "meaning": ["すぐに"], "pronunc": ["jiù"] },
|
||||
{ "word": "带", "meaning": ["~を連れる"], "pronunc": ["dài"] },
|
||||
{ "word": "吧", "meaning": ["~でしょう?", "~しましょう"], "pronunc": ["ba"] },
|
||||
{ "word": "里面", "meaning": ["中に"], "pronunc": ["lǐmiàn"] },
|
||||
{ "word": "有", "meaning": ["(~に~が)ある"], "pronunc": ["yǒu"] },
|
||||
{ "word": "小卖部", "meaning": ["小売店"], "pronunc": ["xiǎomàibù"] },
|
||||
{ "word": "门口", "meaning": ["入口"], "pronunc": ["ménkǒu"] },
|
||||
{ "word": "矿泉水", "meaning": ["ミネラルウォーター"], "pronunc": ["kuàngquánshuǐ"] },
|
||||
{ "word": "谢谢", "meaning": ["ありがとう"], "pronunc": ["xièxie"] },
|
||||
{ "word": "天气", "meaning": ["天気"], "pronunc": ["tiānqì"] },
|
||||
{ "word": "饺子", "meaning": ["水餃子"], "pronunc": ["jiǎozi"] },
|
||||
{ "word": "炒饭", "meaning": ["チャーハン"], "pronunc": ["chǎofàn"] },
|
||||
{ "word": "当", "meaning": ["~となる"], "pronunc": ["dāng"] },
|
||||
{ "word": "公务员", "meaning": ["公務員"], "pronunc": ["gōngwùyuán"] },
|
||||
{ "word": "电脑", "meaning": ["電子"], "pronunc": ["diànnǎo"] },
|
||||
{ "word": "要", "meaning": ["~しなければならない"], "pronunc": ["yào"] },
|
||||
{ "word": "英国", "meaning": ["イギリス"], "pronunc": ["Yīngguó"] },
|
||||
{ "word": "留学", "meaning": ["留学する"], "pronunc": ["liúxué"] },
|
||||
{ "word": "打算", "meaning": ["~しようと思う"], "pronunc": ["dǎsuàn"] },
|
||||
{ "word": "暑假", "meaning": ["夏休み"], "pronunc": ["shǔjià"] },
|
||||
{ "word": "旅行", "meaning": ["旅行"], "pronunc": ["lǚxíng"] },
|
||||
{ "word": "马上", "meaning": ["すぐに"], "pronunc": ["mǎshàng"] },
|
||||
{ "word": "请问", "meaning": ["ちょっとすみません"], "pronunc": ["qǐng wèn"] },
|
||||
{ "word": "车站", "meaning": ["駅"], "pronunc": ["chēzhàn"] },
|
||||
{ "word": "没有", "meaning": ["ない"], "pronunc": ["méiyou"] },
|
||||
{ "word": "食堂", "meaning": ["食堂"], "pronunc": ["shítáng"] },
|
||||
{ "word": "附近", "meaning": ["付近に"], "pronunc": ["fùjìn"] },
|
||||
{ "word": "里", "meaning": ["中"], "pronunc": ["lǐ"] },
|
||||
{ "word": "里边", "meaning": ["中に"], "pronunc": ["lǐbiān"] },
|
||||
{ "word": "外", "meaning": ["外"], "pronunc": ["wài"] },
|
||||
{ "word": "前", "meaning": ["前"], "pronunc": ["qián"] },
|
||||
{ "word": "后", "meaning": ["後ろ"], "pronunc": ["hòu"] },
|
||||
{ "word": "左", "meaning": ["左"], "pronunc": ["zuǒ"] },
|
||||
{ "word": "右", "meaning": ["右"], "pronunc": ["yòu"] },
|
||||
{ "word": "东", "meaning": ["東"], "pronunc": ["dōng"] },
|
||||
{ "word": "南", "meaning": ["南"], "pronunc": ["nán"] },
|
||||
{ "word": "西", "meaning": ["西"], "pronunc": ["xī"] },
|
||||
{ "word": "北", "meaning": ["北"], "pronunc": ["běi"] },
|
||||
{ "word": "旁边", "meaning": ["近く"], "pronunc": ["pángbiān"] },
|
||||
{ "word": "中间", "meaning": ["あいだ"], "pronunc": ["zhōngjiān"] },
|
||||
{ "word": "桌子", "meaning": ["机"], "pronunc": ["zhuōzi"] },
|
||||
{ "word": "台", "meaning": ["台"], "pronunc": ["tái"] },
|
||||
{ "word": "教学楼", "meaning": ["学校の棟"], "pronunc": ["jiàoxuélóu"] },
|
||||
{ "word": "停车场", "meaning": ["駐車場"], "pronunc": ["tíngchēchǎng"] },
|
||||
{ "word": "便利店", "meaning": ["コンビニ"], "pronunc": ["biànlìdiàn"] },
|
||||
{ "word": "数码相机", "meaning": ["電卓"], "pronunc": ["shùmǎ xiàngjī"] },
|
||||
{ "word": "书包", "meaning": ["かばん"], "pronunc": ["shūbāo"] },
|
||||
{ "word": "课本", "meaning": ["教科書"], "pronunc": ["kèběn"] },
|
||||
{ "word": "手机", "meaning": ["ケータイ"], "pronunc": ["shǒujī"] },
|
||||
{ "word": "杂志", "meaning": ["雑誌"], "pronunc": ["zázhì"] },
|
||||
{ "word": "饮料", "meaning": ["飲み物"], "pronunc": ["yǐnliào"] },
|
||||
{ "word": "乌龙茶", "meaning": ["ウーロン茶"], "pronunc": ["wūlońgchá"] },
|
||||
{ "word": "零", "meaning": ["零"], "pronunc": ["líng"] },
|
||||
{ "word": "一", "meaning": ["一"], "pronunc": ["yī"] },
|
||||
{ "word": "二", "meaning": ["二"], "pronunc": ["èr"] },
|
||||
{ "word": "三", "meaning": ["三"], "pronunc": ["sān"] },
|
||||
{ "word": "四", "meaning": ["四"], "pronunc": ["sì"] },
|
||||
{ "word": "五", "meaning": ["五"], "pronunc": ["wǔ"] },
|
||||
{ "word": "六", "meaning": ["六"], "pronunc": ["liù"] },
|
||||
{ "word": "七", "meaning": ["七"], "pronunc": ["qī"] },
|
||||
{ "word": "八", "meaning": ["八"], "pronunc": ["bā"] },
|
||||
{ "word": "九", "meaning": ["九"], "pronunc": ["jiǔ"] },
|
||||
{ "word": "十", "meaning": ["十"], "pronunc": ["shí"] },
|
||||
{ "word": "旅游", "meaning": ["旅行"], "pronunc": ["lǚyóu"] },
|
||||
{ "word": "北海", "meaning": ["北海(固有名詞)"], "pronunc": ["Běihǎi"] },
|
||||
{ "word": "湖", "meaning": ["湖"], "pronunc": ["hú"] },
|
||||
{ "word": "还", "meaning": ["さらに"], "pronunc": ["hái"] },
|
||||
{ "word": "白塔", "meaning": ["白塔(固有名詞)"], "pronunc": ["Báitǎ"] },
|
||||
{ "word": "星期", "meaning": ["週", "曜日"], "pronunc": ["xīngqī"] },
|
||||
{ "word": "东西", "meaning": ["東西", "もの"], "pronunc": ["dōngxi/dōngxī"] },
|
||||
{ "word": "一起", "meaning": ["一緒に"], "pronunc": ["yìqǐ"] },
|
||||
{ "word": "商店", "meaning": ["お店"], "pronunc": ["shāngdiàn"] },
|
||||
{ "word": "公共汽车", "meaning": ["バス"], "pronunc": ["gōnggòngqìchē"] },
|
||||
{ "word": "做", "meaning": ["~をする"], "pronunc": ["zuò"] },
|
||||
{ "word": "呢", "meaning": ["~だよね"], "pronunc": ["ne"] },
|
||||
{ "word": "王府井", "meaning": ["王府井(固有名詞)"], "pronunc": ["Wángfǔjǐng"] },
|
||||
{ "word": "大街", "meaning": ["繁華街"], "pronunc": ["dàjiē"] },
|
||||
{ "word": "借", "meaning": ["~を借りる"], "pronunc": ["jiè"] },
|
||||
{ "word": "新干线", "meaning": ["新幹線"], "pronunc": ["xīngànxiàn"] },
|
||||
{ "word": "前年", "meaning": ["一昨年"], "pronunc": ["qiánnián"] },
|
||||
{ "word": "去年", "meaning": ["去年"], "pronunc": ["qùnián"] },
|
||||
{ "word": "今年", "meaning": ["今年"], "pronunc": ["jīnnián"] },
|
||||
{ "word": "明年", "meaning": ["来年"], "pronunc": ["míngnián"] },
|
||||
{ "word": "后年", "meaning": ["再来年"], "pronunc": ["hòunián"] },
|
||||
{ "word": "上个月", "meaning": ["先月"], "pronunc": ["shàng ge yuè"] },
|
||||
{ "word": "这个月", "meaning": ["今月"], "pronunc": ["zhè ge yuè"] },
|
||||
{ "word": "下个月", "meaning": ["来月"], "pronunc": ["xià ge yuè"] },
|
||||
{ "word": "上个星期", "meaning": ["先週"], "pronunc": ["shàng ge xīngqī"] },
|
||||
{ "word": "这个星期", "meaning": ["今週"], "pronunc": ["zhè ge xīngqī"] },
|
||||
{ "word": "下个星期", "meaning": ["来週"], "pronunc": ["xià ge xīngqī"] },
|
||||
{ "word": "前天", "meaning": ["一昨日"], "pronunc": ["qiántiān"] },
|
||||
{ "word": "昨天", "meaning": ["昨日"], "pronunc": ["zuótiān"] },
|
||||
{ "word": "今天", "meaning": ["今日"], "pronunc": ["jīntiān"] },
|
||||
{ "word": "明天", "meaning": ["明日"], "pronunc": ["míngtiān"] },
|
||||
{ "word": "后天", "meaning": ["明後日"], "pronunc": ["hòutiān"] },
|
||||
{ "word": "早上", "meaning": ["朝"], "pronunc": ["zǎoshang"] },
|
||||
{ "word": "上午", "meaning": ["午前"], "pronunc": ["shàngwǔ"] },
|
||||
{ "word": "中午", "meaning": ["正午"], "pronunc": ["zhōngwǔ"] },
|
||||
{ "word": "下午", "meaning": ["午後"], "pronunc": ["xiàwǔ"] },
|
||||
{ "word": "晚上", "meaning": ["夜"], "pronunc": ["wǎnshang"] },
|
||||
{ "word": "夜里", "meaning": ["夜中"], "pronunc": ["yèli"] },
|
||||
{ "word": "散步", "meaning": ["散歩"], "pronunc": ["sànbù"] },
|
||||
{ "word": "时候", "meaning": ["とき"], "pronunc": ["shíhou"] },
|
||||
{ "word": "周末", "meaning": ["週末"], "pronunc": ["zhōumò"] },
|
||||
{ "word": "跑步", "meaning": ["ジョギングする"], "pronunc": ["pǎobù"] },
|
||||
{ "word": "每天", "meaning": ["毎日"], "pronunc": ["měitiān"] },
|
||||
{ "word": "对", "meaning": ["~に"], "pronunc": ["duì"] },
|
||||
{ "word": "烤鸭", "meaning": ["アヒルの丸焼き"], "pronunc": ["kǎoyā"] },
|
||||
{ "word": "国家", "meaning": ["国家"], "pronunc": ["guójiā"] },
|
||||
{ "word": "漂亮", "meaning": ["洗練されて美しい"], "pronunc": ["piàoliang"] },
|
||||
{ "word": "好吃", "meaning": ["美味しい"], "pronunc": ["hǎochī"] },
|
||||
{ "word": "好听", "meaning": ["(音楽が)聞きよい"], "pronunc": ["hǎotīng"] },
|
||||
{ "word": "电影", "meaning": ["映画"], "pronunc": ["diànyǐng"] },
|
||||
{ "word": "可乐", "meaning": ["コーラ"], "pronunc": ["kělè"] },
|
||||
{ "word": "牛奶", "meaning": ["牛乳"], "pronunc": ["niúnǎi"] },
|
||||
{ "word": "红茶", "meaning": ["紅茶"], "pronunc": ["hóngchá"] },
|
||||
{ "word": "绿茶", "meaning": ["緑茶"], "pronunc": ["lǜchá"] },
|
||||
{ "word": "啤酒", "meaning": ["ビール"], "pronunc": ["píjiǔ"] },
|
||||
{ "word": "绍兴酒", "meaning": ["紹興酒"], "pronunc": ["shàoxīngjiǔ"] },
|
||||
{ "word": "美丽", "meaning": ["美麗である"], "pronunc": ["měilì"] },
|
||||
{ "word": "干净", "meaning": ["清潔である"], "pronunc": ["gānjìng"] },
|
||||
{ "word": "房间", "meaning": ["部屋"], "pronunc": ["fángjiān"] },
|
||||
{ "word": "流利", "meaning": ["流暢"], "pronunc": ["liúlì"] },
|
||||
{ "word": "清楚", "meaning": ["はっきりしている"], "pronunc": ["qīngchu"] },
|
||||
{ "word": "画面", "meaning": ["画面"], "pronunc": ["huàmiàn"] },
|
||||
{ "word": "午饭", "meaning": ["昼食"], "pronunc": ["wǔfàn"] },
|
||||
{ "word": "还是", "meaning": ["かつ~である"], "pronunc": ["háishi"] },
|
||||
{ "word": "涮羊肉", "meaning": ["羊肉のしゃぶしゃぶ"], "pronunc": ["shuànyángròu"] },
|
||||
{ "word": "为什么", "meaning": ["どうやって"], "pronunc": ["wèi shénme"] },
|
||||
{ "word": "比", "meaning": ["~より"], "pronunc": ["bǐ"] },
|
||||
{ "word": "好的", "meaning": ["いいよ"], "pronunc": ["hǎo de"] },
|
||||
{ "word": "全聚德", "meaning": ["全聚德(固有名詞)"], "pronunc": ["Quánjùdé"] },
|
||||
{ "word": "方便", "meaning": ["便利だ"], "pronunc": ["fāngbiàn"] },
|
||||
{ "word": "暖和", "meaning": ["温暖だ"], "pronunc": ["nuǎnhuo"] },
|
||||
{ "word": "多了", "meaning": ["とても"], "pronunc": ["duō le"] },
|
||||
{ "word": "两岁", "meaning": ["二歳分"], "pronunc": ["liǎng suì"] },
|
||||
{ "word": "清华", "meaning": ["清華(固有名詞)"], "pronunc": ["Qīnghuá"] },
|
||||
{ "word": "学习", "meaning": ["学習する"], "pronunc": ["xuéxí"] },
|
||||
{ "word": "漫画书", "meaning": ["漫画本"], "pronunc": ["mànhuàshū"] },
|
||||
{ "word": "给", "meaning": ["~に", "あげる"], "pronunc": ["gěi"] },
|
||||
{ "word": "打", "meaning": ["(スポーツを)する", "(電話を)かける"], "pronunc": ["dǎ"] },
|
||||
{ "word": "电话", "meaning": ["電話"], "pronunc": ["diànhuà"] },
|
||||
{ "word": "从", "meaning": ["~から"], "pronunc": ["cóng"] },
|
||||
{ "word": "到", "meaning": ["~まで"], "pronunc": ["dào"] },
|
||||
{ "word": "跟", "meaning": ["~と一緒に"], "pronunc": ["gēn"] },
|
||||
{ "word": "因为", "meaning": ["なぜなら"], "pronunc": ["yīnwèi"] },
|
||||
{ "word": "有意思", "meaning": ["面白い"], "pronunc": ["yǒu yìsì"] },
|
||||
{ "word": "怎么", "meaning": ["いったいどうして"], "pronunc": ["zěnme"] },
|
||||
{ "word": "这么", "meaning": ["これほど"], "pronunc": ["zhème"] },
|
||||
{ "word": "春天", "meaning": ["春"], "pronunc": ["chūntiān"] },
|
||||
{ "word": "夏天", "meaning": ["夏"], "pronunc": ["xiàtiān"] },
|
||||
{ "word": "秋天", "meaning": ["秋"], "pronunc": ["qiūtiān"] },
|
||||
{ "word": "冬天", "meaning": ["冬"], "pronunc": ["dōngtiān"] },
|
||||
{ "word": "东来顺", "meaning": ["东来顺(固有名詞)"], "pronunc": ["Dōngláishùn"] },
|
||||
{ "word": "经常", "meaning": ["いつも"], "pronunc": ["jīngcháng"] },
|
||||
{ "word": "热闹", "meaning": ["混雑している"], "pronunc": ["rènao"] },
|
||||
{ "word": "太极拳", "meaning": ["太極拳"], "pronunc": ["tàijíquán"] },
|
||||
{ "word": "正在", "meaning": ["ちょうど~している"], "pronunc": ["zhèngzài"] },
|
||||
{ "word": "喜欢", "meaning": ["するのが好き"], "pronunc": ["xǐhuan"] },
|
||||
{ "word": "传统", "meaning": ["伝統"], "pronunc": ["chuántǒng"] },
|
||||
{ "word": "不过", "meaning": ["しかし"], "pronunc": ["búguò"] },
|
||||
{ "word": "体操", "meaning": ["体操"], "pronunc": ["tǐcāo"] },
|
||||
{ "word": "健身法", "meaning": ["健康法"], "pronunc": ["jiànshēnfǎ"] },
|
||||
{ "word": "你看", "meaning": ["見てよ"], "pronunc": ["nǐ kàn"] },
|
||||
{ "word": "是啊", "meaning": ["そうです"], "pronunc": ["shì a"] },
|
||||
{ "word": "生日礼物", "meaning": ["誕生日プレゼント"], "pronunc": ["shēngrì lǐwù"] },
|
||||
{ "word": "信", "meaning": ["(手紙を)書く"], "pronunc": ["xìn"] },
|
||||
{ "word": "电视", "meaning": ["テレビ"], "pronunc": ["diànshì"] },
|
||||
{ "word": "小说", "meaning": ["小説"], "pronunc": ["xiǎoshuō"] },
|
||||
{ "word": "生鱼片", "meaning": ["刺身"], "pronunc": ["shēngyúpiàn"] },
|
||||
{ "word": "运动", "meaning": ["スポーツ"], "pronunc": ["yùndòng"] },
|
||||
{ "word": "棒球", "meaning": ["野球"], "pronunc": ["bàngqiú"] },
|
||||
{ "word": "晚饭", "meaning": ["夕食"], "pronunc": ["wǎnfàn"] },
|
||||
{ "word": "游泳", "meaning": ["スイミングをする"], "pronunc": ["yóuyǒng"] },
|
||||
{ "word": "滑冰", "meaning": ["アイススケートをする"], "pronunc": ["huábīng"] },
|
||||
{ "word": "滑雪", "meaning": ["スキーをする"], "pronunc": ["huáxuě"] },
|
||||
{ "word": "划船", "meaning": ["ボートをこぐ"], "pronunc": ["huáchuán"] },
|
||||
{ "word": "跳舞", "meaning": ["ダンスをする"], "pronunc": ["tiàowǔ"] },
|
||||
{ "word": "踢足球", "meaning": ["サッカーをする"], "pronunc": ["tīzúqiú"] },
|
||||
{ "word": "操场", "meaning": ["グラウンド"], "pronunc": ["cāochǎng"] },
|
||||
{ "word": "听说", "meaning": ["聞くところによると"], "pronunc": ["tīngshuō"] },
|
||||
{ "word": "女孩儿", "meaning": ["女子"], "pronunc": ["nǚháir"] },
|
||||
{ "word": "网球", "meaning": ["テニス"], "pronunc": ["wǎngqiú"] },
|
||||
{ "word": "感", "meaning": ["~と感じる"], "pronunc": ["gǎn"] },
|
||||
{ "word": "干", "meaning": ["~をする"], "pronunc": ["gàn"] },
|
||||
{ "word": "兴趣", "meaning": ["興味がある"], "pronunc": ["xìngqù"] },
|
||||
{ "word": "一直", "meaning": ["まっすぐ", "ずっと"], "pronunc": ["yìzhí"] },
|
||||
{ "word": "开始", "meaning": ["~を始める"], "pronunc": ["kāishǐ"] },
|
||||
{ "word": "教", "meaning": ["~を教える"], "pronunc": ["jiāo"] },
|
||||
{ "word": "觉得", "meaning": ["~と思う"], "pronunc": ["juéde"] },
|
||||
{ "word": "知道", "meaning": ["~と知っている"], "pronunc": ["zhīdào"] },
|
||||
{ "word": "希望", "meaning": ["~してほしいと思う"], "pronunc": ["xīwàng"] },
|
||||
{ "word": "古典", "meaning": ["古典的な"], "pronunc": ["gǔdiǎn"] },
|
||||
{ "word": "历史", "meaning": ["歴史"], "pronunc": ["lìshǐ"] },
|
||||
{ "word": "小时候", "meaning": ["小さい頃"], "pronunc": ["xiǎoshíhou"] },
|
||||
{ "word": "玩儿", "meaning": ["遊ぶ"], "pronunc": ["wánr"] },
|
||||
{ "word": "常常", "meaning": ["いつも"], "pronunc": ["chángcháng"] },
|
||||
{ "word": "见面", "meaning": ["~と会う"], "pronunc": ["jiànmiàn"] },
|
||||
{ "word": "偶尔", "meaning": ["たまに"], "pronunc": ["ǒu'ěr"] },
|
||||
{ "word": "有时", "meaning": ["しばしば"], "pronunc": ["yǒushí"] },
|
||||
{ "word": "饭馆儿", "meaning": ["レストラン"], "pronunc": ["fànguǎnr"] },
|
||||
{ "word": "张(助数詞)", "meaning": ["~枚"], "pronunc": ["zhāng"] },
|
||||
{ "word": "市", "meaning": ["(行政)市"], "pronunc": ["shì"] },
|
||||
{ "word": "地图", "meaning": ["地図"], "pronunc": ["dìtú"] },
|
||||
{ "word": "问", "meaning": ["質問する"], "pronunc": ["wèn"] },
|
||||
{ "word": "问题", "meaning": ["問題"], "pronunc": ["wèntí"] },
|
||||
{ "word": "告诉", "meaning": ["~を教える"], "pronunc": ["gàosu"] },
|
||||
{ "word": "号", "meaning": ["番号"], "pronunc": ["hào"] },
|
||||
{ "word": "英语", "meaning": ["英語"], "pronunc": ["Yīngyǔ"] },
|
||||
{ "word": "综合人间学", "meaning": ["総合人間学"], "pronunc": ["zōnghérénjiānxué"] },
|
||||
{ "word": "文学", "meaning": ["文学"], "pronunc": ["wénxué"] },
|
||||
{ "word": "教育学", "meaning": ["教育学"], "pronunc": ["jiàoyùxué"] },
|
||||
{ "word": "法学", "meaning": ["法学"], "pronunc": ["fǎxué"] },
|
||||
{ "word": "经济学", "meaning": ["経済学"], "pronunc": ["jīngjìxué"] },
|
||||
{ "word": "理学", "meaning": ["理学"], "pronunc": ["lǐxué"] },
|
||||
{ "word": "医学", "meaning": ["医学"], "pronunc": ["yīxué"] },
|
||||
{ "word": "药学", "meaning": ["薬学"], "pronunc": ["yàoxué"] },
|
||||
{ "word": "工学", "meaning": ["工学"], "pronunc": ["gōngxué"] },
|
||||
{ "word": "农学", "meaning": ["農学"], "pronunc": ["nóngxué"] },
|
||||
{ "word": "后海", "meaning": ["后海(固有名詞)"], "pronunc": ["Hòuhǎi"] },
|
||||
{ "word": "嗯", "meaning": ["うん", "えっと"], "pronunc": ["ǹg"] },
|
||||
{ "word": "夜景", "meaning": ["夜景"], "pronunc": ["yèjǐng"] },
|
||||
{ "word": "古建筑", "meaning": ["昔の建築"], "pronunc": ["gǔ jiànzhù"] },
|
||||
{ "word": "鼓楼", "meaning": ["鼓楼"], "pronunc": ["Gǔlóu"] },
|
||||
{ "word": "钟楼", "meaning": ["鐘楼"], "pronunc": ["Zhōnglóu"] },
|
||||
{ "word": "研究", "meaning": ["研究"], "pronunc": ["yánjiū"] },
|
||||
{ "word": "一大早", "meaning": ["朝早く"], "pronunc": ["yídàzǎo"] },
|
||||
{ "word": "已经", "meaning": ["すでに"], "pronunc": ["yǐjīng"] },
|
||||
{ "word": "饿", "meaning": ["お腹がすいている"], "pronunc": ["è"] },
|
||||
{ "word": "小吃店", "meaning": ["ちょっとした飲食店"], "pronunc": ["xiǎochīdiàn"] },
|
||||
{ "word": "早饭", "meaning": ["朝食"], "pronunc": ["zǎofàn"] },
|
||||
{ "word": "进去", "meaning": ["~に入っていく"], "pronunc": ["jìnqu"] },
|
||||
{ "word": "一下", "meaning": ["~してみる"], "pronunc": ["yíxià"] },
|
||||
{ "word": "据说", "meaning": ["聞くところによると"], "pronunc": ["jùshuō"] },
|
||||
{ "word": "发祥地", "meaning": ["発祥の地"], "pronunc": ["fāxiángdì"] },
|
||||
{ "word": "之一", "meaning": ["~の一つ"], "pronunc": ["zhīyī"] },
|
||||
{ "word": "品种", "meaning": ["品揃え"], "pronunc": ["pǐnzhōng"] },
|
||||
{ "word": "一定", "meaning": ["きっと"], "pronunc": ["yídìng"] },
|
||||
{ "word": "隆福寺", "meaning": ["隆福寺(固有名詞)"], "pronunc": ["Lóngfúsì"] },
|
||||
{ "word": "小吃", "meaning": ["ちょっとした食事"], "pronunc": ["xiǎochī"] },
|
||||
{ "word": "过 (アスペクト助詞)", "meaning": ["~したことがある"], "pronunc": ["guo"] },
|
||||
{ "word": "点", "meaning": ["~時"], "pronunc": ["diǎn"] },
|
||||
{ "word": "分", "meaning": ["~分"], "pronunc": ["fēn"] },
|
||||
{ "word": "钟", "meaning": ["鐘", "(~時)ちょうど"], "pronunc": ["zhōng"] },
|
||||
{ "word": "两", "meaning": ["二"], "pronunc": ["liǎng"] },
|
||||
{ "word": "刻", "meaning": ["十五分"], "pronunc": ["kè"] },
|
||||
{ "word": "几", "meaning": ["なに"], "pronunc": ["jǐ"] },
|
||||
{ "word": "月", "meaning": ["~月"], "pronunc": ["yuè"] },
|
||||
{ "word": "电车", "meaning": ["電車"], "pronunc": ["diànchē"] },
|
||||
{ "word": "本", "meaning": ["本"], "pronunc": ["běn"] },
|
||||
{ "word": "打工", "meaning": ["アルバイトをする"], "pronunc": ["dǎgōng"] },
|
||||
{ "word": "雨", "meaning": ["雨"], "pronunc": ["yǔ"] },
|
||||
{ "word": "累", "meaning": ["疲れる"], "pronunc": ["lèi"] },
|
||||
{ "word": "休息", "meaning": ["休む"], "pronunc": ["xiūxi"] },
|
||||
{ "word": "感冒", "meaning": ["病気"], "pronunc": ["gǎnmào"] },
|
||||
{ "word": "长城", "meaning": ["長城"], "pronunc": ["Chángchéng"] },
|
||||
{ "word": "以前", "meaning": ["以前"], "pronunc": ["yǐqián"] },
|
||||
{ "word": "等", "meaning": ["~を待つ"], "pronunc": ["děng"] },
|
||||
{ "word": "苹果", "meaning": ["リンゴ"], "pronunc": ["píngguǒ"] },
|
||||
{ "word": "尝", "meaning": ["(食べ物を)試してみる"], "pronunc": ["cháng"] },
|
||||
{ "word": "洗手间", "meaning": ["トイレ"], "pronunc": ["xǐshoǔjiān"] },
|
||||
{ "word": "自我介绍", "meaning": ["自己紹介"], "pronunc": ["zìwǒjièshào"] },
|
||||
{ "word": "光临", "meaning": ["ご来訪"], "pronunc": ["guānglín"] },
|
||||
{ "word": "多少", "meaning": ["どれくらい"], "pronunc": ["duōshao"] },
|
||||
{ "word": "钱", "meaning": ["お金"], "pronunc": ["qián"] },
|
||||
{ "word": "面包", "meaning": ["パン"], "pronunc": ["miànbāo"] },
|
||||
{ "word": "卖完", "meaning": ["売り切れた"], "pronunc": ["màiwán"] },
|
||||
{ "word": "对不起", "meaning": ["すみません"], "pronunc": ["duìbuqǐ"] },
|
||||
{ "word": "碗(助数詞)", "meaning": ["~杯"], "pronunc": ["wǎn"] },
|
||||
{ "word": "一共", "meaning": ["合計"], "pronunc": ["yígòng"] },
|
||||
{ "word": "找", "meaning": ["探す"], "pronunc": ["zhǎo"] },
|
||||
{ "word": "欢迎", "meaning": ["~を歓迎する"], "pronunc": ["huānyíng"] },
|
||||
{ "word": "芸豆卷", "meaning": ["白インゲン豆の皮の記事で餡を巻いた、餡カステラのようなお菓子"], "pronunc": ["yúndòujuǎn"] },
|
||||
{ "word": "驴打滚", "meaning": ["餅黍の粉の記事を蒸して小豆とナツメの餡を包んだきなこ餅"], "pronunc": ["lǘdǎgǔn"] },
|
||||
{ "word": "艾窝窝", "meaning": ["一種の餡団子"], "pronunc": ["àiwōwo"] },
|
||||
{ "word": "再", "meaning": ["さらに"], "pronunc": ["zài"] },
|
||||
{ "word": "馄饨", "meaning": ["ワンタン"], "pronunc": ["húntun"] },
|
||||
{ "word": "块(助数詞)", "meaning": ["(かたまりや金を数える)"], "pronunc": ["kuài"] },
|
||||
{ "word": "百", "meaning": ["百"], "pronunc": ["bǎi"] },
|
||||
{ "word": "千", "meaning": ["千"], "pronunc": ["qiān"] },
|
||||
{ "word": "万", "meaning": ["万"], "pronunc": ["wàn"] },
|
||||
{ "word": "第", "meaning": ["第~の"], "pronunc": ["dì"] },
|
||||
{ "word": "奥运会", "meaning": ["オリンピック"], "pronunc": ["Àoyùnhuì"] },
|
||||
{ "word": "班", "meaning": ["班"], "pronunc": ["bān"] },
|
||||
{ "word": "位(助数詞)", "meaning": ["(偉い人を数える)"], "pronunc": ["wèi"] },
|
||||
{ "word": "客人", "meaning": ["客人"], "pronunc": ["kèrén"] },
|
||||
{ "word": "件(助数詞)", "meaning": ["(事柄や衣服を数える)"], "pronunc": ["jiàn"] },
|
||||
{ "word": "事情", "meaning": ["事情", "要件"], "pronunc": ["shìqing"] },
|
||||
{ "word": "毛衣", "meaning": ["セーター"], "pronunc": ["máoyī"] },
|
||||
{ "word": "糖", "meaning": ["砂糖"], "pronunc": ["táng"] },
|
||||
{ "word": "肉", "meaning": ["肉"], "pronunc": ["ròu"] },
|
||||
{ "word": "豆腐", "meaning": ["豆腐"], "pronunc": ["dòufu"] },
|
||||
{ "word": "只(助数詞)", "meaning": ["(手や動物を数える)"], "pronunc": ["zhī"] },
|
||||
{ "word": "手", "meaning": ["手"], "pronunc": ["shǒu"] },
|
||||
{ "word": "鸡", "meaning": ["鶏"], "pronunc": ["jī"] },
|
||||
{ "word": "羊", "meaning": ["羊"], "pronunc": ["yáng"] },
|
||||
{ "word": "猫", "meaning": ["猫"], "pronunc": ["māo"] },
|
||||
{ "word": "辆(助数詞)", "meaning": ["(車両を数える)"], "pronunc": ["liàng"] },
|
||||
{ "word": "汽车", "meaning": ["汽車"], "pronunc": ["qìchē"] },
|
||||
{ "word": "床", "meaning": ["床"], "pronunc": ["chuáng"] },
|
||||
{ "word": "照片", "meaning": ["照明器具"], "pronunc": ["zhàopiàn"] },
|
||||
{ "word": "邮票", "meaning": ["切手"], "pronunc": ["yóupiào"] },
|
||||
{ "word": "条(助数詞)", "meaning": ["(道路や犬を数える)"], "pronunc": ["tiáo"] },
|
||||
{ "word": "马路", "meaning": ["道路"], "pronunc": ["mǎlù"] },
|
||||
{ "word": "鱼", "meaning": ["魚"], "pronunc": ["yú"] },
|
||||
{ "word": "狗", "meaning": ["犬"], "pronunc": ["gǒu"] },
|
||||
{ "word": "裤子", "meaning": ["ズボン"], "pronunc": ["kùzi"] },
|
||||
{ "word": "把(助数詞)", "meaning": ["(持てるものを数える)"], "pronunc": ["bǎ"] },
|
||||
{ "word": "椅子", "meaning": ["椅子"], "pronunc": ["yǐzi"] },
|
||||
{ "word": "剪子", "meaning": ["はさみ"], "pronunc": ["jiǎnzi"] },
|
||||
{ "word": "刀子", "meaning": ["ナイフ"], "pronunc": ["dāozi"] },
|
||||
{ "word": "支(助数詞)", "meaning": ["(細いものを数える)"], "pronunc": ["zhī"] },
|
||||
{ "word": "铅笔", "meaning": ["鉛筆"], "pronunc": ["qiānbǐ"] },
|
||||
{ "word": "圆珠笔", "meaning": ["ボールペン"], "pronunc": ["yuánzhūbǐ"] },
|
||||
{ "word": "香烟", "meaning": ["焼香の煙"], "pronunc": ["xiāngyān"] },
|
||||
{ "word": "双(助数詞)", "meaning": ["(対のものを数える)"], "pronunc": ["shuāng"] },
|
||||
{ "word": "鞋", "meaning": ["靴"], "pronunc": ["xié"] },
|
||||
{ "word": "袜子", "meaning": ["靴下"], "pronunc": ["wàzi"] },
|
||||
{ "word": "筷子", "meaning": ["箸"], "pronunc": ["kuàizi"] },
|
||||
{ "word": "元(単位)", "meaning": ["~元"], "pronunc": ["yuán"] },
|
||||
{ "word": "角(単位)", "meaning": ["~角(十分の一元)"], "pronunc": ["jiǎo"] },
|
||||
{ "word": "毛(単位)", "meaning": ["~毛(十分の一元)"], "pronunc": ["máo"] },
|
||||
{ "word": "人民币", "meaning": ["人民元"], "pronunc": ["Rénmínbì"] },
|
||||
{ "word": "欧", "meaning": ["欧(ヨーロッパの略)"], "pronunc": ["ōu"] },
|
||||
{ "word": "小笼包", "meaning": ["小籠包"], "pronunc": ["xiǎolóngbāo"] },
|
||||
{ "word": "笼", "meaning": ["かご"], "pronunc": ["lóng"] },
|
||||
{ "word": "橘子", "meaning": ["ミカン"], "pronunc": ["júzi"] },
|
||||
{ "word": "斤(単位)", "meaning": ["~斤"], "pronunc": ["jīn"] },
|
||||
{ "word": "完(結果補語)", "meaning": ["~し終える"], "pronunc": ["wán"] },
|
||||
{ "word": "作业", "meaning": ["宿題"], "pronunc": ["zuòyè"] },
|
||||
{ "word": "懂(結果補語)", "meaning": ["~して理解する"], "pronunc": ["dǒng"] },
|
||||
{ "word": "钱包", "meaning": ["財布"], "pronunc": ["qiánbāo"] },
|
||||
{ "word": "洗", "meaning": ["~を洗う"], "pronunc": ["xǐ"] },
|
||||
{ "word": "见(結果補語)", "meaning": ["~して感じ取る"], "pronunc": ["jiàn"] },
|
||||
{ "word": "岁", "meaning": ["~歳"], "pronunc": ["suì"] },
|
||||
{ "word": "岁数", "meaning": ["年齢"], "pronunc": ["suìshu"] },
|
||||
{ "word": "次", "meaning": ["~回"], "pronunc": ["cì"] },
|
||||
{ "word": "陪", "meaning": ["~についていく"], "pronunc": ["péi"] },
|
||||
{ "word": "完全", "meaning": ["完全"], "pronunc": ["wánquán"] },
|
||||
{ "word": "一样", "meaning": ["同じ"], "pronunc": ["yíyàng"] },
|
||||
{ "word": "面积", "meaning": ["面積"], "pronunc": ["miànjī"] },
|
||||
{ "word": "了不起", "meaning": ["大したものである"], "pronunc": ["liǎobuqǐ"] },
|
||||
{ "word": "建筑", "meaning": ["建築"], "pronunc": ["jiànzhù"] },
|
||||
{ "word": "空", "meaning": ["空いている"], "pronunc": ["kòng"] },
|
||||
{ "word": "正好", "meaning": ["ちょうどよい", "たまたま"], "pronunc": ["zhènghǎo"] },
|
||||
{ "word": "园林", "meaning": ["庭園"], "pronunc": ["yuánlín"] },
|
||||
{ "word": "但是", "meaning": ["しかし"], "pronunc": ["dànshì"] },
|
||||
{ "word": "用", "meaning": ["~で"], "pronunc": ["yòng"] },
|
||||
{ "word": "人力", "meaning": ["人力"], "pronunc": ["rénlì"] },
|
||||
{ "word": "建造", "meaning": ["~を建造する"], "pronunc": ["jiànzào"] },
|
||||
{ "word": "山", "meaning": ["山"], "pronunc": ["shān"] },
|
||||
{ "word": "得", "meaning": ["(様態補語を伴う動詞に続く)"], "pronunc": ["de"] },
|
||||
{ "word": "睡", "meaning": ["寝る"], "pronunc": ["shuì"] },
|
||||
{ "word": "高中", "meaning": ["高校"], "pronunc": ["gāozhōng"] },
|
||||
{ "word": "小时", "meaning": ["~時間"], "pronunc": ["xiǎoshí"] },
|
||||
{ "word": "多长时间", "meaning": ["どのくらいの時間"], "pronunc": ["duōcháng shíjiān"] },
|
||||
{ "word": "遍", "meaning": ["~回"], "pronunc": ["biàn"] },
|
||||
{ "word": "唱", "meaning": ["~を歌う"], "pronunc": ["chàng"] },
|
||||
{ "word": "歌", "meaning": ["歌"], "pronunc": ["gē"] },
|
||||
{ "word": "闷热", "meaning": ["蒸し暑い"], "pronunc": ["mēnrè"] },
|
||||
{ "word": "参加", "meaning": ["~に参加する"], "pronunc": ["cānjiā"] }
|
||||
]
|
||||
}
|
BIN
Kuli/src/wrong.mp3
Normal file
BIN
Kuli/src/wrong.mp3
Normal file
Binary file not shown.
BIN
Kuli/src/wrong.wav
Normal file
BIN
Kuli/src/wrong.wav
Normal file
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
ody {
|
||||
body {
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-weight: bold;
|
||||
@ -49,12 +49,12 @@ ody {
|
||||
|
||||
#word {
|
||||
font-size: 8vh;
|
||||
font-family: 'Microsoft YaHei', sans-serif;
|
||||
color: black;
|
||||
}
|
||||
|
||||
#pronunc {
|
||||
font-size: 4vh;
|
||||
font-family: "Times New Roman", "Arial", "Courier New", "Segoe UI";
|
||||
color: gray;
|
||||
}
|
||||
|
||||
@ -100,6 +100,7 @@ ody {
|
||||
|
||||
#result {
|
||||
width: fit-content;
|
||||
font-family: 'Microsoft YaHei', sans-serif;
|
||||
min-width: 26vw;
|
||||
padding: 0.5em 1em;
|
||||
margin: 0 auto;
|
||||
|
Loading…
x
Reference in New Issue
Block a user