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

大约有 2,439 项符合查询结果, 库内数据总量为 24,853 项。 (搜索耗时: 0.0062 秒)

961. 按钮交互实现 [ 69%]

...(); this.SceneMajor.addChild(gameOver); gameOver.btRetry.on('click', this, function(){ window.location.reload(); });当然因为按钮都是小元素, 默认情况下会被打包成atlas文件 需要在代码执行前先下载完毕这个图片集 Laya.loader.create("res/atlas/simbols.atlas",Laya.Ha...

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

962. 设置fontSize的时候没做类型转换 [ 69%]

设置fontSize的时候没做类型转换 __getset(0,__proto,'fontSize',function(){ return this._fontSize; },function(value){ if (this._fontSize !=value){ this._fontSize=value; this.isChanged=true; } }); 如果设置fontSize="30",没有做类型转换,后面所有通过fontSize参与的加法...

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

963. Swift中接入Native,执行完drawInRect后不执行update了! [ 69%]

...)update {    NSLog(@"----------------------%s----------------------", __FUNCTION__); }   //------------------------------------------------------------------------------   - (void)glkView:(GLKView *)view drawInRect:(CGRect)rect {     //conchRuntime renderFrame     [self.m_pConchRuntime r...

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

964. 一行居中的动态文字,怎么设置不同样式。 [ 69%]

...一个函数,通过传参的方式改变文本html的不同样式 public function setUp():void { var html:HTMLDivElement=new HTMLDivElement(); html.width=500; html.height=500; changeHtml('#0000FF',"哈哈哈哈哈",html); Laya.stage.addChild(html); } private function changeHtml(color:String,text:S...

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

965. laya.ui.Tab [ 69%]

...个项对象,返回此项对象的索引id。 UIGroup callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Component clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya...

来源: laya_api 发布时间: 20170929

966. 怎么使用http请求 [ 69%]

怎么使用http请求 httpRequest: function (url, data) { var xhr = cc.loader.getXMLHttpRequest(); if (!xhr.onreadystatechange) { xhr.onreadystatechange = function () { if (xhr.readyState == 4 && (xhr.status >= 200 && xhr.status <= 207)) { //cc.log("response:\n" + xhr.respons...

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

967. Animation 下的Event.COMPLETE 回调 [ 69%]

...,OnAnimation());                                   function OnAnimation():void{                                    _gameTableScene["donghua"+ transformToDesignIndex(msg.index)].visible =false;                 _gameTableScene["donghua"+ tran...

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

968. 关于嵌入div [ 69%]

...的链接 提交 1 个回复 cuixueying 赞同来自: 请参考:public function LayaAirDemo() { Laya.init(Browser.width, Browser.height, WebGL); Laya.stage.bgColor = "#232628"; Laya.timer.once(500,this,onLoop); Stat.show(); } private function onLoop():void { __JS__('var LayaCanvas1=document.getEle...

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

969. 请问Laya如果获取Laya.Event.CLICK时间的点击坐标? [ 69%]

...获取Laya.Event.CLICK时间的点击坐标? // 设置用户点击事件 function setUserClick(){ var clickRect = new Laya.Sprite(); clickRect.graphics.drawRect( 0, 0, Laya.stage.width, Laya.stage.height-100 ); clickRect.pos( 0, 0 ); clickRect.size( Laya.stage.width, Laya.stage.height-100 ); Laya....

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

970. 文本在屏幕不垂直居中 [ 69%]

文本在屏幕不垂直居中 (function(){ Laya.init(600,400,Laya.WebGL); //Laya.stage.alignH=Laya.Stage.ALIGN_CENTER; // Laya.stage.alignV=Laya.Stage.ALIGN_MIDDLE; GameMain(); function GameMain(){ var tx= new Laya.Text(); tx.text='这是一个demo'; tx.color='#ffffff'; tx.fontSize="20"; tx.pos(La...

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