大约有 1,449 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0051 秒)
...览器常用的函数封装起来。 window.as代码如下: ```java /*[IF-FLASH]*/package { public class window { public function window() { } public static function alert(msg:Object):void { } } } ``` `/*[IF-FLASH]*/`是LayaCompiler的编译宏,其后的类不会被编译为JS,对此不了解...
来源: Laya2.0_文档 发布时间: 20210715
...标转换为百度坐标 private convertToBaiduCoord(data: any): void { if (data.status == 0) { var position: any = data.points[0]; // 设置标注物位置 this.marker.setPosition(position); this.map.panTo(position); } } ``` 在转换完成后设置标注物的位置,并且把视...
来源: Laya2.0_文档 发布时间: 20210714
... trace("接收到数据域的消息 = "+ JSON.stringify(message)); if( message.type == 1){ showRank(); } if( message.type == 2){ ...
来源: Laya_社区 发布时间: 20180525
...FF"; } onOrientationChange(absolute, info) { const Browser = Laya.Browser; if (info.alpha === null) { alert("当前设备不支持陀螺仪。"); } else if (firstTime && !absolute && !Browser.onIOS) { firstTime = false; alert("在当前设备中无法获取地球坐标系,使用设备坐标系,...
来源: Laya2.0_示例 发布时间: 20241119
...***859:这个是js文件变量声明的问题 你把第一行 !function(e){if("object"==typeof exports&& 改成 var CANNON; !function(e){if(e&&e!=="undefined"){CANNON=e()}; if("object"==typeof exports&& 试试。 181*****859 • 2018-07-24 16:10 ...
来源: Laya_社区 发布时间: 20180424
...登录按钮响应函数 LoginView.prototype.onButtonLogin = function () { if(this.user.text == "" || this.user.text =="请输入用户名") { this.dlg = new TanChuang(); this.dlg.init(); this.dlg.setContext(this.user.text); } else if(this.password.text == "" || this.password.text =="请输入密码...
来源: Laya_社区 发布时间: 20170215
...le.log("111111"); this.vy *= 0.99; this.vy += 0.25; console.log("222222"); if (this.ball.y + this.vy >= this.img1 ||this.ball.y + this.vy <= 0) { this.vy = -this.vy; console.log("33333"); } if (this.ball.x + this.vx > this.stageWidth ||this.ball.x + this.vx < 0) { this.vx = -this.vx; con...
来源: Laya_社区 发布时间: 20171108
...(charactor) { charactor.x += moveSpeed; charactor.rotation += rotateSpeed; if (charactor.x > Laya.stage.width + extraSpace) { charactor.x = -extraSpace; } } })();module laya { import Sprite = Laya.Sprite; import Loader = Laya.Loader; import Browser = Laya.Browser; import Handler = Laya.Handler; impo...
来源: Laya_示例 发布时间: 20241119
...{ // console.log("index",index); // } _proto_.onMouse = function(e,index){ if(e.type == Laya.Event.CLICK){ //console.log(e.type,index); if(this.selectedIndex !== index){ if(this.selectedIndex!==-1){ //之前选中的列表项的选中状态设置为false this.sList.setItem(this.selectedIndex,{ selec...
来源: Laya_社区 发布时间: 20170805
...致无法生效 /**渲染数值*/ protected function changeValue():void { if (!this._sources) return; if (!_valueArr) return; 2017-12-01 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_XS 赞同来自: fontcli...
来源: Laya_社区 发布时间: 20171201