大约有 573 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0043 秒)
Laya_社区(216) Laya3.0_api(192) Laya2.0_api(58) laya_api(53) Laya2.0_文档(26) Laya3.0_文档(14) Laya2.0_示例(8) Laya_示例(6)
... b = sprite.getBounds(); if (b.width <= 0 || b.height <= 0) { return; } 同时,发现这里区域计算与第一次渲染不一致,以下是修改后的; //start ...
来源: Laya_社区 发布时间: 20210629
...ssvalue.anchorY = 0.5; this.progressvalue.pos(15, 15); //记录宽度 this.width_x = this.progress.width + 3; this.vmask = new Laya.Sprite(); this.vmask.pos(15,15); this.vmask.graphics.drawPie(0, 0, 20, -90, 270, "#000000"); this.progress.addChild(this.progressvalue); this.progressvalue.mask = th...
来源: Laya_社区 发布时间: 20180725
... delayShow() { let canvas = Laya.stage.drawToCanvas(Laya.stage.width, Laya.stage.height, 0, 0); let str = canvas.toBase64('image/png', 1); let img = document.createElement('img'); img.style.position = 'absolute'; img.style.top =...
来源: Laya_社区 发布时间: 20230419
...nt; var rect = new Laya.Sprite(); rect.graphics.drawRect(0, 0, this.contentWidth, this.contentHeight, "#000000"); content.hitArea = new Laya.HitArea(); content.hitArea.hit = rect.graphics; } 然后分别在panel的“setContentSize”和“changeScroll”方法的最后一行添加 this.setContent...
来源: Laya_社区 发布时间: 20170610
...下: __JS__('var qrcode = new QRCode(document.getElementById("qrcode"), {width:100, height:100});'); 范例中的代码本身是这样子的: <body> <div id="qrcode" style="width:100px; height:100px; margin-top:15px;"></div> <script type="text/javascript"> var qrcode = ne...
来源: Laya_社区 发布时间: 20170817
...file <div class="upload-wrap" id="upload" style="left: 0px; top: 0px; width: 0px; height: 0px; display: none;"> <input type="file" class="upload-pic" id="upFile" accept="image/jpeg,image/png" value="upload Img"> <span class="upload-text"></span> </div> ...
来源: Laya_社区 发布时间: 20170116
...g2.png"; panel=new Panel(); panel.vScrollBarSkin="comp/vscroll.png"; panel.width=300; panel.height=300; Laya.stage.addChild(panel); panel.addChild(img); panel.vScrollBar.min=1; panel.vScrollBar.max=500; panel.vScrollBar.value=panel.vScrollBar.max; Laya.timer.frameLoop(12,this,onLoop); } private func...
来源: Laya_社区 发布时间: 20161103
...ML="<img src='res/image/1.png' />"; console.log("size: " + imageHtml.width + ", " + imageHtml.height); console.log("contextSize: " + imageHtml.contextWidth + ", " + imageHtml.contextHeight); Laya.stage.addChild(imageHtml); 上述代码在Laya中运行 正确显示了 图片 控制台输出...
来源: Laya_社区 发布时间: 20171118
...高度),如果前者为0或为空,则选择后者。 Browser clientWidth : Number[static] [read-only] 浏览器窗口可视宽度。 通过分析浏览器信息获得。浏览器多个属性值优先级为:window.innerWidth(包含滚动条宽度) > document.body.clientWidth(不包含滚...
来源: Laya2.0_api 发布时间: 20190513
...ar ape = new Sprite(); ape.loadImage("../bin/res/images/2.png",(Laya.stage.width)/2,(Laya.stage.height)/2); 效果和 ape.x=(Laya.stage.width)/2; ape.y=(Laya.stage.height)/2;不同这是为什么? 2017-07-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀...
来源: Laya_社区 发布时间: 20170717