大约有 4 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0012 秒)
...#232628"; this.createTexts(); } createTexts() { this.createLabel("只允许输入数字:").pos(50, 20); let input = this.createInput(); input.pos(50, 50); input.restrict = "0-9"; this.createLabel("只允许输入字母:").pos(50, 100); input = this.createInput(); input.pos(50, 130); input.restri...
来源: Laya2.0_示例 发布时间: 20241117
...nput; let inputText = new Input(); Laya.stage.addChild(inputText); //多行输入 inputText.multiline = true; inputText.wordWrap = true; inputText.size(350, 100); inputText.x = Laya.stage.width - inputText.width >> 1; inputText.y = Laya.stage.height - inputText.height >> 1; inputText.padding = [2,2,...
来源: Laya2.0_示例 发布时间: 20241117
...>> 1; inputText.y = Laya.stage.height - inputText.height >> 1; // 移动端输入提示符 inputText.prompt = "Type some word..."; // 设置字体样式 inputText.bold = true; inputText.bgColor = "#666666"; inputText.color = "#ffffff"; inputText.fontSize = 20; } } new Text_InputSingleline();module l...
来源: Laya2.0_示例 发布时间: 20241117
...elta * 1); this.showLabel("密码", 0, rowHeightDelta * 2); // 显示右侧输入框 let emailInput = this.createInputElement(); let birthdayInput = this.createInputElement(); let passwordInput = this.createInputElement(); birthdayInput.type = "date"; passwordInput.type = "password"; Laya.stage.on(L...
来源: Laya2.0_示例 发布时间: 20241117