• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 83 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)

21. DOM元素-表单输入 [ 69%]

...Element(); var passwordInput = createInputElement(); birthdayInput.type = "date"; passwordInput.type = "password"; Laya.stage.on(Laya.Event.RESIZE, this, fitDOMElements, [emailInput, birthdayInput, passwordInput]); function showLabel(label,x,y){ var t = new Laya.Text(); t.height = this.rowHeight; t....

来源: Laya_示例 发布时间: 20241118

22. [LayaNative3]游戏致命bug,WEB 性能是 native 性能 35倍 ,请求紧急修复 [ 69%]

...push("resources/test/a ("+i+").png");         }          let nt = Date.now();         Laya.loader.load(             loadList,             Laya.Handler.create(this, () => {                 var label=this.owner.getChildByName("time") as Laya.Label;            ...

来源: Laya_社区 发布时间: 20240628

23. 字节平台(抖音预览调试),因为一行代码导致无法启动问题 [ 68%]

... T): T { if (instance == null) { return instance } if (instance instanceof Date) { return new Date(instance.getTime()) as any } if (instance instanceof Array) { var cloneArr = [] as any[] ;(instance as any[]).forEach((value) => { cloneArr.push(value) }) return cloneArr.map((value: any) => Game...

来源: Laya_社区 发布时间: 20230625

24. DOM元素-表单输入 [ 68%]

...nt(); let passwordInput = this.createInputElement(); birthdayInput.type = "date"; passwordInput.type = "password"; Laya.stage.on(Laya.Event.RESIZE, this, this.fitDOMElements, [emailInput, birthdayInput, passwordInput]); } showLabel(label, x, y) { const Text = Laya.Text; let t = new Laya.Text(); t.he...

来源: Laya2.0_示例 发布时间: 20241118

25. 如何启用摇一摇 [ 65%]

...'_model = model'); __JS__('var SHAKE_THRESHOLD = 100'); __JS__('var last_update = 0'); __JS__('var x = y = z = last_x = last_y = last_z = 0;'); __JS__('var canShake = 1'); __JS__('if (window.DeviceMotionEvent){window.addEventListener("devicemotion", deviceMotionHandler, false)'); __JS__('}else{alert...

来源: Laya_社区 发布时间: 20160110

26. 解决游戏最小化退到后台后浏览器会强制1秒执行一次ILaya.stage._loop() [ 65%]

...nity')             }             const target = Date.now() + Number(ms)             while (target > Date.now()){}         }         postMessage(['ok']);     } catch (e) {         console.log("Exception in wait onmessage...

来源: Laya_社区 发布时间: 20201201

27. 报错:找不到基类,按照laya社区的解答做了,但是导致了另外一个类和接口出现一样的错 [ 64%]

...aya.display.Sprite;     import laya.display.Text;     /**      * @date 2017-10-25 下午12:28:23      * @author xiaozhibin      */      public class HelloLayaBox extends Sprite     {         public function HelloLayaBox()         {             Laya.init(600...

来源: Laya_社区 发布时间: 20171025

28. 怎么获取年月日的方法 [ 61%]

...: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 用Date类获取,具体的方法和属性,同js原生一致,建议你网上搜下! 2017-08-04 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Agnes 相关问...

来源: Laya_社区 发布时间: 20170804

29. 如何获取毫秒值 [ 61%]

... 与内容相关的链接 提交 1 个回复 182*****369 赞同来自: new Date().getTime(); 2017-09-21 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 cqgcs 相关问题 请问有没有方法能够获取“鼠标是否处于按下状态...

来源: Laya_社区 发布时间: 20170920

30. 怎么将Unix时间戳转换成普通时间 [ 60%]

...复 wudi199553 赞同来自: ainideqingliang 先 var unixTimestamp = new Date(Unix timestamp * 1000) 然后 commonTime = unixTimestamp.toLocaleString() 2017-11-27 1 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 ainideqingliang 相关...

来源: Laya_社区 发布时间: 20171127