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

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

11. Socket能连接到服务器,客户端发请求也能收到服务端的数据,但是服务端主动推送数据,客户端就是收不到数据? [ 81%]

...fer.join("\n"));              document.getElementById("sendButton").onclick = function() {     if (ws != null) {                 //发送SubmitBetInfo请求                 var submitBetInfo_obj = new Object();                 var userBetList=[];              ...

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

12. dialog 遮挡 [ 78%]

...444",400,400); createDialog("555",500,500); Laya.stage.on(Event.CLICK,this,onClick); } private function onClick():void { alert(Dialog.manager.numChildren+"");//manager是DialogManager的实例,创建多少个dialog,manager下就有多少的子对象 var dia:Dialog=Dialog.manager.getChildAt(2) as...

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

13. 如何实现3d遮罩效果? [ 76%]

..., Laya.stage.height - 50 * Browser.pixelRatio); btn.on(Event.CLICK, _this, onclick); Laya.stage.addChild(btn); Laya.stage.on(Event.RESIZE, null, function():void { btn.pos(Laya.stage.width / 2 - btn.width * Browser.pixelRatio / 2, Laya.stage.height - 50 * Browser.pixelRatio); }); })); } private funct...

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

14. laya.ui.CheckBox_API3.0 [ 66%]

...heckBox 对象的显示位置。 checkBox.clickHandler = new Handler(this, onClick, [checkBox]);//设置 checkBox 的点击事件处理器。 Laya.stage.addChild(checkBox);//将此 checkBox 对象添加到显示列表。 } private function onClick(checkBox:CheckBox):void { trace("输出选中状态:...

来源: Laya3.0_api 发布时间: 20231115

15. 刚刚接触2天layaair,有几个问题请教。 [ 65%]

...ew中的一个button(比如but1)的click事件呢?类似html里面的onclick

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

16. Layabox web 复制一段文字到剪贴板 [ 65%]

...") console.log(e) clipboard.destroy(); })  //确认按钮 this.confirmBtn.onclick = function () { _this.CloseDivAndInfoMesg(this); } // 创建弹出层 遮罩层 等 if (!document.getElementById("mask") && 1) { //mask div this.newMask.id = "mask"; this.newMask.style.position = "absolute"; t...

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

17. 请问 layaair2.0的js有没有api可以查询 例如Laya.Script [ 57%]

...ault class btn1 extends Laya.Script { constructor(){super();} onEnable(){} onClick(){ alert("id="+this.id); //这里有一个id,但是系统自动生成的,无法获知这个id代表哪个按钮被点(因为我有4个按钮都绑了这个js) alert("name="+this.name); //未定义不知道怎...

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

18. 2.x引擎项目升级指南 · LayaAir3.0文档 · LAYABOX [ 35%]

...行 */ onKeyUp?(evt: Event): void; 和老版本比较,有如下改变 1) onClick 名字变更为 onMouseClick 2) onDoubleClick 名字变更为 onMouseDoubleClick 3) 删除了onStageMouseDown,onStageMouseUp,onStageClick,onStageMouseMove 4) 删除了onMouseEnter,它与onMouseOver重复。 4...

来源: Laya3.0_文档 发布时间: 20230406

19. LayaAir和原生DOM交互(ActionScript-2D进阶篇(AS3)-扩展模块) [ 32%]

...Buffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate); window.onclick = function() { // Fill the buffer with white noise; //just random values between -1.0 and 1.0 for (var channel = 0; channel < channels; channel++) { // This gives us the actual ArrayBuffer that contains the data var n...

来源: Laya2.0_文档 发布时间: 20210715

20. LayaAir和原生DOM交互(TypeScript-2D进阶篇(TS)-扩展模块) [ 26%]

...Buffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate); window.onclick = function() { // Fill the buffer with white noise; //just random values between -1.0 and 1.0 for (var channel = 0; channel 总结:可以看到 web的声音功能越来越强大,假如不考虑某些低端机的兼...

来源: Laya2.0_文档 发布时间: 20210715