大约有 1,383 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0050 秒)
Laya_社区(1078) Laya2.0_文档(80) Laya3.0_api(75) Laya_示例(42) Laya2.0_示例(40) Laya3.0_文档(27) Laya2.0_api(22) laya_api(19)
...tatic HEI: number = 85; private img: Laya.Image; //private text: Laya.Label; constructor(){ super(); this.size(Item.WID, Item.HEI); this.img = new Laya.Image(); //this.text = new Laya.Label(); this.addChild(this.img); //this.addChild(th...
来源: Laya_社区 发布时间: 20180507
... Zorana • 2018-07-31 16:34 let button = wx.createUserInfoButton({ type: 'text', text: '获取用户信息', style: { left: 10, top: 76, width: 200, height: 40, lineHeight: 40, backgroundColor: '#ff0000', color: '#ffffff', textAlign: 'center', fontSize: 16, borderRadius: 4 } }) 这种利用微信...
来源: Laya_社区 发布时间: 20180728
...balError:出错啦,请把此信息截图给研发商 Uncaught TypeError: text.replace is not a function TypeError: text.replace is not a function at Input.__proto.parseLines (file:///D:/LayaAirIDE/resources/app/out/vs/layaEditor/h5/laya.js:60001:19) at Input.__proto.typeset (file:///...
来源: Laya_社区 发布时间: 20191108
...增加了js引用,如下<!--导入math.js包--> <script type="text/javascript" src='math.min.js'></script> <!--导入自定义计算工具包--> <script type="text/javascript" src='math.self.js'></script> 打包之后,发生的bug如下: math is not defined ...
来源: Laya_社区 发布时间: 20190312
...06 赞同来自: <body style="background:#ff0000;"> <script type="text/javascript" src="laya.core.js"></script> <script type="text/javascript" src="laya.webgl.js"></script> <script> window.onload = function (){ document.documentElement.style.overflow='hidden'; ...
来源: Laya_社区 发布时间: 20180709
...lt); if (this.outHitResult.succeeded) { //删除碰撞到的物体 this.text.text = "点击到了" + this.outHitResult.collider.owner.name ; console.log("碰撞到物体!!") } 上述代码运行时候报错,一直无法解决,请求大佬帮忙看一下问题?(.scene.physicsSimulat...
来源: Laya_社区 发布时间: 20190523
...台,默认背景色是黑色的 Laya.init(600, 300); var txt = new Laya.Text(); //设置文本内容 txt.text = "Hello"; //设置文本颜色 txt.color = "#FF0000"; //设置文本字体大小,单位是像素 txt.fontSize = 66; //设置字体描边 txt.stroke = 5;//描边为5像素 txt.strokeColo...
来源: Laya_社区 发布时间: 20171019
...: 那个不是设置滚动的,你如果想要文本滚动的话 1、用textArea组件,有gun滚动条的功能,超出部分会进行滚动 2、为你的text组件设置一个panel,panel也可以设置滚动条,超出panel尺寸的部分可以进行滚动! 2017-03-29 0 6 分享 微博 QZO...
来源: Laya_社区 发布时间: 20170329
... this.content.on(Event.MOUSE_WHEEL, this, this.onMousewheel); } this.createText = function (_content, _fontSize, _color, _width, _autoSize, _wordWrap, _ID) { var txt = new Text(); txt.text = _content; txt.cacheAs = 'bitmap'; txt.fontSize = _fontSize; txt.bold = true; txt.font = 'wordFont'; txt.color...
来源: Laya_社区 发布时间: 20161118
...为哪个组件赋值,每个组件都有自己的默认属性,label是text,clip是index 要多个属性赋值的话可以写arr.push({label: {text:"item"+i,color:"#FF0000"},clip: i % 9}); 2017-05-03 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请...
来源: Laya_社区 发布时间: 20170503