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

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

31. tab 是否可以做到左右滑动切换view呢? [ 70%]

...USE_DOWN ,this, this.onMouseDown);         this.on(laya.events.Event.MOUSE_UP ,this, this.onMouseUp);              }     private onMouseDownX : number;     private onMouseDownY : number;     private isMove : boolean ;     onMouseDown(e : laya.events.Event):void{      ...

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

32. 区块地图-滚动地图 [ 70%]

...p(); Laya.stage.on(Event.MOUSE_DOWN, this, mouseDown); Laya.stage.on(Event.MOUSE_UP, this, mouseUp); })(); //创建地图 function createMap() { //创建地图对象 tiledMap = new TiledMap(); mX = mY = 0; //创建地图,适当的时候调用destory销毁地图 tiledMap.createMap("../../res/tiledM...

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

33. 鼠标交互-双指旋转(多点触控) [ 69%]

...28"; setup(); })(); function setup() { createSprite(); Laya.stage.on(Event.MOUSE_UP, this, onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, onMouseUp); } function createSprite() { sp = new Sprite(); var w = 200, h = 300; sp.graphics.drawRect(0, 0, w, h, "#FF7F50"); sp.size(w, h); sp.pivot(w / 2, h /...

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

34. 循环添加一组按钮事件无法正常使用 [ 69%]

...nt.MOUSE_MOVE, this, mouseHandler);                 b.on(Event.MOUSE_UP, this, mouseHandler);                 trace("addEvent");             }         }         private function mouseHandler(e:Event=null)         {             trace("mouseE...

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

35. 区块地图-滚动地图 [ 69%]

...Laya.stage.on(Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Event.MOUSE_UP, this, this.mouseUp); Stat.show(); } // 创建地图 createMap() { const TiledMap = Laya.TiledMap, Rectangle = Laya.Rectangle, Handler = Laya.Handler, Browser = Laya.Browser; mX = mY = 0; // 创建地图对象 this.t...

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

36. 鼠标交互-双指旋转(多点触控) [ 69%]

...show(); this.setup(); } setup() { this.createSprite(); Laya.stage.on(Event.MOUSE_UP, this, this.onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, this.onMouseUp); } createSprite() { const Sprite = Laya.Sprite, Event = Laya.Event; let w = 200, h = 300; this.sp = new Sprite(); Laya.stage.addChild(this....

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

37. 在微信分享成功的回调函数里,Laya播放音效失败。 [ 68%]

...SE_DOWN); Laya.stage.off(Laya.Event.MOUSE_MOVE); Laya.stage.off(Laya.Event.MOUSE_UP) Laya.stage.off(Laya.Event.MOUSE_OUT);  // 鼠标按下事件 Laya.stage.on(Laya.Event.MOUSE_DOWN, this.snakeSelf, this.snakeSelf.onMouseDown); Laya.stage.on(Laya.Event.MOUSE_UP, this.snakeSelf, this.snakeSelf.onMou...

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

38. 文字在框内滑动、滚动文本 [ 68%]

...a.Event.MOUSE_MOVE, this, this.scrollText);     Laya.stage.on(Laya.Event.MOUSE_UP, this, this.finishScroll); } function finishScroll(){     Laya.stage.off(Laya.Event.MOUSE_MOVE, this, this.scrollText);     Laya.stage.off(Laya.Event.MOUSE_UP, this, this.finishScroll); } function scrollText(){ ...

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

39. 那个文本溢出需要滚动条怎么弄,API里面就说用Scroll接口,小白 不懂怎么弄 [ 68%]

...a.stage.on(Laya.Event.MOUSE_MOVE,this,scrollText);Laya.stage.on(Laya.Event.MOUSE_UP,this,finishScrollText);}/* 停止滚动文本 */function finishScrollText(){Laya.stage.off(Laya.Event.MOUSE_MOVE, this, this.scrollText);Laya.stage.off(Laya.Event.MOUSE_UP, this, this.finishScrollText);}/* 鼠标滚...

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

40. 鼠标交互-双指缩放(多点触控) [ 68%]

...28"; setup(); })(); function setup() { createSprite(); Laya.stage.on(Event.MOUSE_UP, this, onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, onMouseUp); } function createSprite() { sp = new Sprite(); var w = 300, h = 300; sp.graphics.drawRect(0, 0, w, h, "#FF7F50"); sp.size(w, h); sp.pivot(w / 2, h /...

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