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

大约有 1,873 项符合查询结果, 库内数据总量为 31,580 项。 (搜索耗时: 0.0065 秒)

841. laya.utils.PerfHUD [ 69%]

...read-only] 对象的显示高度(以像素为单位)。 Sprite displayWidth : Number[read-only] 对象的显示宽度(以像素为单位)。 Sprite drawCallOptimize : BooleanSprite  drawTexTm : Number = 0[static] PerfHUD filters : Array滤镜集合。可以设置多个滤镜组合。Spr...

来源: Laya2.0_api 发布时间: 20190513

842. laya.ui.UIComponent_API3.0 [ 69%]

...hitTestPrior mouseThrough name tag drawtocanvCtx Accessors _isHeightSet _isWidthSet active activeInHierarchy alpha anchorX anchorY blendMode bottom cacheAs centerX centerY components customRenderEnable dataSource destroyed disabled displayHeight displayWidth displayedInStage drawCallOptimize filters...

来源: Laya3.0_api 发布时间: 20231115

843. 分享:如何用代码创建自定义Tab组件 [ 69%]

...blic class LayaAirDemo { public function LayaAirDemo() { Laya.init(Browser.width,Browser.height); Laya.stage.bgColor="#EEFFCC"; //预加载button的资源,用于tab的项皮肤 Laya.loader.load("button-4.png",Handler.create(this,onLoaded)); } private function onLoaded():void { //添加tab容器 va...

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

844. 文本对齐与自动换行(JavaScript-LayaAir基础篇(JS)-文本) [ 69%]

...设置文本区背景 txt.bgColor = "#c30c30"; //设置文本的宽高 txt.width = 400; txt.height = 400; //设置文本水平居中 txt.align = "center"; //设置文本垂直居中 txt.valign = "middle"; Laya.stage.addChild(txt); ``` ![5](img/5.png) 在实际编码中如果需要其他的对齐模...

来源: Laya2.0_文档 发布时间: 20210715

845. UI-ScrollBar [ 69%]

... HScrollBar(); Laya.stage.addChild(hs); hs.skin = "res/ui/hscroll.png"; hs.width = 300; hs.pos(50, 170); hs.min = 0; hs.max = 100; hs.changeHandler = new Handler(this, this.onChange); } placeVScroller() { const VScrollBar = Laya.VScrollBar, Handler = Laya.Handler; let vs = new VScrollBar(); Laya.sta...

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

846. 其他引擎的Demo-Example_21 [ 69%]

...= Laya.Loader; // 不支持WebGL时自动切换至Canvas Laya.init(Browser.width, Browser.height, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#3da8bb"; Stat.show(); this.createCanvases(); La...

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

847. Image偶尔显示不了 [ 69%]

...用的是LayaAirIDE2.3,图片偶尔显示不了,经查parent,visible,x,y,width,height,alpha,skin都正常,资源所在图集也存在,不过小图的source的_referecentCount==0,_texture==null。不知是不是这个原因引起?      如附件图,black.png是用到的小图,所在...

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

848. 鼠标事件能否在有图形的区域感应,特别是子项坐标为负数时(已经找到问题) [ 69%]

...(0,0,90,100,"#faaff0"); testPan.on(Event.CLICK,this,onMouseClick); testPan.width = 90; testPan.height = 100; var mcSp:Sprite = new Sprite(); mcSp.graphics.drawRect(0,0,90,100,"#fff000"); testPan.addChild( mcSp); mcSp.pos( -25,-90 ); } private function onMouseClick(e:Event):void { trace( e.target ); ...

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

849. 2.0UI的生命周期感觉有问题 [ 69%]

...没有发成功 斜角透视的感觉怎么弄出来呀?? Sprite中的width,height和size(width,height)感觉没作用啊 layabox2d例子,虽然出来效果,但是总感觉跟laya挂钩不上。 关于动画模板 除了官网的介绍有没有什么比较好的 实例 或者demo的...

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

850. HTMLDivElement下划线换行时,下划线颜色错误 [ 69%]

...ight; if(hasLine) graphic.drawLine(startWord.x,lineY,lastWords.x+lastWords.width,lineY,this.color,1); var hitRec=HTMLHitRect.create(); hitRec.rec.setTo(startWord.x,lastWords.y,lastWords.x+lastWords.width-startWord.x,lastWords.height); hitRec.href=this.href; recList.push(hitRec); }graphic.drawLine()...

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