大约有 1,017 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0053 秒)
Laya_社区(598) Laya2.0_文档(86) Laya3.0_api(75) Laya2.0_api(62) laya_api(57) Laya2.0_示例(53) Laya_示例(49) Laya3.0_文档(37)
...画的pivot动画 tl2.play(0, true, "pivot"); //动画的显示位置 tl2.pos(300,0); } } } ``` 示例代码运行效果如动图31所示: ![动图31](img/31.gif) (动图31) #### ### 3.4 在UI中使用时间轴动画,然后在项目代码中调用。 #### 3.4.1 创建UI页,添加Animation动...
来源: Laya2.0_文档 发布时间: 20210715
...aphics.drawCircle(80,80,50,"#ff0000"); //圆形所在的位置坐标 cMask.pos(120,50); //实现img显示对象的遮罩效果 img.mask = cMask; } })(); ``` 运行效果如图3所示: ![图3](img/3.jpg) (图3) 通过对比代码我们发现,实现遮罩很简单,把创建的显示对象cMa...
来源: Laya2.0_文档 发布时间: 20210715
...;//把接收到的二进制数据读进byte数组便于解析。 this.byte.pos = 0;//设置偏移指针; ////下面开始读取数据,按照服务器传递过来的数据,按照顺序读取 var a:number = this.byte.getByte(); var b:number = this.byte.getInt16(); var c:number = this.byte.getFlo...
来源: Laya2.0_文档 发布时间: 20210714
...置为粗体 txt.bold = true; //设置文本的显示起点位置X,Y txt.pos(60, 100); //设置舞台背景色 Laya.stage.bgColor = '#23238E'; //将文本内容添加到舞台 Laya.stage.addChild(txt); } } } ``` 运行结果如图10所示 ![10](img/10.jpg) (图10) 至此,如果您能跟随本篇...
来源: Laya2.0_文档 发布时间: 20210715
...mer.PROGRESS_TIMER_TYPE_RECT); processTimer.setPosition(0,0); processTimer.setReverseDirection(true) var percent:Number = 0; if( data.totalDuration != 0 && data.totalDuration != -1...
来源: Laya_社区 发布时间: 20180404
...rDeserialize onAwake onDestroy onDisable onEnable once parentRepaint pivot pos reCache removeChild removeChildAt removeChildByName removeChildren removeSelf render repaint replaceChild runCallLater scale setChildIndex setGraphics setSelfBounds set_anchorX set_anchorY set_bottom set_dataSource set_he...
来源: Laya3.0_api 发布时间: 20231115
...owser.pixelRatio, Laya.Browser.pixelRatio); changeActionButton.pos(Laya.stage.width / 2 - changeActionButton.width * Laya.Browser.pixelRatio / 2, Laya.stage.height - 100 * Laya.Browser.pixelRatio); changeActionButton.on(Laya.Event.CLICK, this, function () { ...
来源: Laya_社区 发布时间: 20171127
...ddle"); _webframe.setAttribute('scrolling', "no"); _webframe.setAttribute('position', "absolute"); _webframe.setAttribute('style', "z-index:100001;position: absolute; left: 0px; top: 0px; background: rgb(0, 0, 0);"); Browser.document.body.appendChild(_webframe); 下面图片左边是正产机型截...
来源: Laya_社区 发布时间: 20180103
...;//把接收到的二进制数据读进byte数组便于解析。 this.byte.pos = 0;//设置偏移指针; ////下面开始读取数据,按照服务器传递过来的数据,按照顺序读取 var a:int = this.byte.getByte(); var b:int = this.byte.getInt16(); var c:Number = this.byte.getFloat32()...
来源: Laya2.0_文档 发布时间: 20210715
...seOverHole); this.on(Event.MOUSE_OUT, this, this.__onMouseOutHole); } this.pos(this._objectInfo.templateInfo.x, this._objectInfo.templateInfo.y); } private __onMouseOverHole(event:Event):void { this._body.scale(1.2, 1.2); } private __onMouseOutHole(event:Event):void { this._body.scale(1, 1); }代码...
来源: Laya_社区 发布时间: 20180308