Commit 425ffa28 authored by Chen Jiping's avatar Chen Jiping

feat:调整字体大小

parent b88a31bf
......@@ -310,13 +310,13 @@ cc.Class({
//首字母
let initial = wordArr[i].val.substr(0, 1);
let label = this.getWord(wordArr[i], initial, 700, true);
let label = this.getWord(wordArr[i], initial, 600, true);
label.isInitial = true;
wordNodeArr.push(label);
//其余字母
let last = wordArr[i].val.substr(1);
let lastLabel = this.getWord(wordArr[i], last, 700, false);
let lastLabel = this.getWord(wordArr[i], last, 600, false);
wordNodeArr.push(lastLabel);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment