大约有 140 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0052 秒)
Laya_社区(86) Laya_示例(13) Laya2.0_文档(12) Laya2.0_示例(10) Laya2.0_api(6) laya_api(6) Laya3.0_文档(6) Laya3.0_api(1)
...mouseover[static] 定义 mouseover 事件对象的 type 属性值。Event MOUSE_UP : String = mouseup[static] 定义 mouseup 事件对象的 type 属性值。Event MOUSE_WHEEL : String = mousewheel[static] 定义 mousewheel 事件对象的 type 属性值。Event OPEN : String = open[static] 定...
来源: Laya2.0_api 发布时间: 20190513
...self, self.onHandle); 这里用CLICK事件替代,或者同时监听一个MOUSE_UP事件,当鼠标抬起时,将MOUSE_DOWNshi事件移除 2017-03-07 0 1 分享 微博 QZONE 微信 yanmingjie 赞同来自: demo已经上传 重现步骤: (1)运行游戏 (2)打开控制台(f12) (3...
来源: Laya_社区 发布时间: 20170307
...e) { this.imag= img; this.imageName=tempImageName; this.imag.on(Laya.Event.MOUSE_UP, this, this.hit); //this.img.on(Laya.Event.) } var _proto = Poker.prototype; _proto.show = function () { this.imag.y = 50; } _proto.hit = function () { if ( this.imag.y == 50) { this.imag.y = 150; } else if(this.imag...
来源: Laya_社区 发布时间: 20180130
...ownValue = this.list_rule.scrollBar.value; } else if (e.type == Laya.Event.MOUSE_UP || e.type == Laya.Event.MOUSE_OUT) { if (this.m_downValue > -1) { if (this.list_rule.scrollBar.value < this.m_downValue) { this.list_rule.scrollBar.stopScroll(); this.list_rule.tweenTo(index - 1,100); } else if...
来源: Laya_社区 发布时间: 20171202
...mouseover[static] 定义 mouseover 事件对象的 type 属性值。Event MOUSE_UP : String = mouseup[static] 定义 mouseup 事件对象的 type 属性值。Event MOUSE_WHEEL : String = mousewheel[static] 定义 mousewheel 事件对象的 type 属性值。Event OPEN : String = open[static] 定...
来源: laya_api 发布时间: 20170929
...ownValue = this.list_rule.scrollBar.value; } else if (e.type == Laya.Event.MOUSE_UP || e.type == Laya.Event.MOUSE_OUT) { if (this.m_downValue > -1) { if (this.list_rule.scrollBar.value < this.m_downValue) { this.list_rule.scrollBar.stopScroll(); this.list_rule.tweenTo(index - 1,100); } else if...
来源: Laya_社区 发布时间: 20181112
...imag.on(Event.MOUSE_DOWN,this,onDown); imag.on(Event.MOUSE_UP,this,onUP); } private function onDown():void{ imag.startDrag(); } private function onUP():void{ imag.sto...
来源: Laya_社区 发布时间: 20170510
...ownValue = this.list_rule.scrollBar.value; } else if (e.type == Laya.Event.MOUSE_UP || e.type == Laya.Event.MOUSE_OUT) { if (this.m_downValue > -1) { if (this.list_rule.scrollBar.value < this.m_downValue) { this.list_rule.scrollBar.stopScroll(); this.list_rule.tweenTo(index - 1,100); } else if...
来源: Laya_社区 发布时间: 20180724
...on(Event.MOUSE_DOWN, this, mouseDown); Laya.stage.on(Event.MOUSE_UP, this, mouseUp); })(); //创建地图 function createMap() { //创建地图对象 tiledMap = new TiledMap(); //创建Rectangle实例,视口区...
来源: Laya_社区 发布时间: 20180614
...on(Event.MOUSE_DOWN, this, mouseDown); Laya.stage.on(Event.MOUSE_UP, this, mouseUp); })(); //创建地图 function createMap() { //创建地图对象 tiledMap = new TiledMap(); //创建Rectangle实例,视口区...
来源: Laya_社区 发布时间: 20180612