大约有 110 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
...气泡随着聊天内容变化的圆角矩形 用的HTMLDivElement,但是style里不能设置background为图片啊,只能为color 在html里是这样写的 <span>右边</span> <div style="width:422px;"> <img style= " display:inline; float:right; " src...
来源: Laya_社区 发布时间: 20170710
... - 知识达人 赞同来自: 你代码中不是设置了自动换行么?style.wordwrap = true 2017-11-17 0 0 分享 微博 QZONE 微信 swp_laya 赞同来自: 自动换行不应该是一行的末尾会自动换行么? 上图是名字后面就换了 我这是一条文本 2017-11-20 0 4 分...
来源: Laya_社区 发布时间: 20171116
...aultX this.html.contextHeight = 55 this.html.contextWidth = 1180 this.html.style.fontSize = 34 this.html.style.wordWrap = false this.html.style.lineHeight = 55 this.html.style.align = "left" this.html.style.color = "#fff" this.html.innerHTML = "" this.hornBox.addChild(this.html) this.addChild(this.h...
来源: Laya_社区 发布时间: 20180314
... words.length=w.length; var size; var style=this.style; var fontStr=style.font; var startX=0; for(var i=0,l=w.length;i<l;i++){ size=Utils.measureText(w[i],fontStr); ...
来源: Laya_社区 发布时间: 20180517
...); })(); function createDom() { mapDiv = Browser.createElement("div"); var style = mapDiv.style; style.position = "absolute"; style.top = Laya.stage.height / Browser.pixelRatio + "px"; style.left = "0px"; style.width = Browser.width / Browser.pixelRatio + "px"; style.height = (Browser.height - Laya....
来源: Laya_示例 发布时间: 20241117
...reateParagraph() { var p = new HTMLDivElement(); Laya.stage.addChild(p); p.style.font = "Impact"; p.style.fontSize = 30; var html = '<span style="color:black;font-weight:bold;font:24px Arial">&#160;&#160;a paragraph from external html.</span>\ <br/>\ <span style="color:w...
来源: Laya_社区 发布时间: 20180808
...{ const Browser = Laya.Browser; mapDiv = Browser.createElement("div"); let style = mapDiv.style; style.position = "absolute"; style.top = Laya.stage.height / Browser.pixelRatio + "px"; style.left = "0px"; style.width = Browser.width / Browser.pixelRatio + "px"; style.height = (Browser.height - Laya....
来源: Laya2.0_示例 发布时间: 20241117
...rect[1], dt_w, dt_h)) : (ctx.getImageData(0, 0,dt_w, dt_h)); vivo下 getStyle 有时候莫名为空 13518行 getStyle() { this._style === SpriteStyle.EMPTY && (this._style = SpriteStyle.create()); if( this._style == null){ this._...
来源: Laya_社区 发布时间: 20191017
...变大小的 __JS__("var div=document.createElement('div')"); __JS__("div.style.width='400px'"); __JS__("div.style.height='400px'"); // 相对父级定位,并在最上方显示 __JS__("div.style.position='absolute'"); __JS__("div.style.zIndex=100"); // 获取laya的div,让饼图的div位于laya...
来源: Laya_社区 发布时间: 20170109
...calculateCacheRect(sprite, tCacheType, x, y) { var _cacheStyle = sprite._cacheStyle; if (!_cacheStyle.cacheRect) _cacheStyle.cacheRect = Rectangle.create(); var tRec; if (tCacheType === "bitmap") { ...
来源: Laya_社区 发布时间: 20210615