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

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

11. 新手引导在ios浏览器表现异常 [ 73%]

...is.guideContainer.addChild(maskButton);             maskButton.clickHandler = new Laya.Handler(this, () => {                 if (button) {                     if (button instanceof Laya.Button) {                     ...

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

12. 怎么打开第二个工程 [ 72%]

...unction Main() { Laya.init(500,500); Laya.stage.once(Event.CLICK,this,this.clickHandler); } private function clickHandler():void { var iframe:Object = Browser.document.createElement("iframe"); iframe.style.position ="absolute";//设置布局定位。这个不能少。 iframe.style.zIndex = 100;//设...

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

13. list和cell如何联系 [ 72%]

...rHandler 中给 cell 中的 btn 添加点击事件处理 ; 类似 if(btn.clickHandler)  btn.clickHandler = new handler (this, onListBtnClick) ; onListBtnClick 函数中 list.selectItem 来判断执行什么逻辑 ; 2017-01-21 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折...

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

14. hitTestPrior点击穿透 [ 70%]

...rawRect(0, 0, box1.width, box1.height, `#999900`); box1.addChild(sp); box1.clickHandle = () => { lizheng.log(`点击了box1`); } box1.hitTestPrior = false; Laya.stage.addChild(box1); let lab = new Laya.Label(); lab.text = "666666666666666666"; lab.fontSize = 50; lab.clickHandle = () => { lizhe...

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

15. 多个button如何区分 [ 70%]

... for(var i:int=0;i<10;i++) { var btn:Button=new Button(); ....... btn.clickHandler = laya.utils.Handler.create(this,this.onClickButton,[i],false); } this.onClickButton = function(id){ 通过ID 判断点击哪一个按钮! } 189*****192 • 2017-04-26 09:38 @cyqcyqcyq:我明白你的意思 this....

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

16. 使用官方文档中qrcode生成二维码的代码,打包APP后无效 [ 70%]

...= this.URL; this.qrcode.makeCode(url); Laya.stage.once("click", this, this.clickHandler); this.qrcodeSp = new Laya.Sprite(); Laya.stage.addChild(this.qrcodeSp); } private clickHandler(): void { var url: string = this.qrcode._oDrawing._elImage.src;//获取,注意这里是异步的,开发者可以...

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

17. 路径显示会添加DrawCall,每增加一条路径都会添加,有什么办法降DrawCall [ 69%]

...); //_path.viewPort = new Rectangle(0,0,(len-3)*PATH_LEN-30,58); btn_start.clickHandler = new Handler(this,StartMove,[len]); add_other.clickHandler = new Handler(this,OnShow); // aa.dataSource = {text:"mmmm"}; for(var i:int = 0;i<100;i++){ var img:Image = TestScrollImage(); img.pos(100+i*10,100+i...

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

18. 【官网代码】加载dom音频报错,怎么回事? [ 67%]

...t.createAnalyser();analyser.fftSize = 256;Laya.stage.once(Event.CLICK,this,clickHandler); }private function clickHandler(e:Object):void{var http:HttpRequest = new HttpRequest();http.on(Event.COMPLETE,this,completeHandler);http.send("489.mp3","","get",Loader.BUFFER);}private function completeHandler...

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

19. 两个问题都关于LayaAir的ios真机 [ 67%]

... if (e.type === Event.CLICK) { toggle && (selected = !_selected); _clickHandler && _clickHandler.run(); return; } !_selected && (state = stateMap[e.type]); } public static function addDark(target:laya.display.Sprite, isDark:Boolean = true):void { if (isDark) { // laya.ui.UIUt...

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

20. 画了一个封闭的曲线,获取鼠标点击处的像素,为何坐标对不上导致拿不到正确位置的Texture? [ 66%]

....stage.addChild(_view); _view.size(80, 100); _view.on(Event.CLICK, this, __clickHandler); } private function __clickHandler():void { trace(_view.stage.mouseX + "---" + _view.stage.mouseY); /*获取所画曲线鼠标点击处的像素,为何坐标对不上?导致无法拿到正确位置的Texture...

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