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

大约有 4,338 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0093 秒)

1191. 滤镜-颜色滤镜 [ 79%]

...ing = "../../res/apes/monkey2.png"; private var apeTexture:Texture; public function Filters_Color() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scal...

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

1192. 全屏请求问题!!!求救啊!!求救啊!! [ 79%]

...on(Laya.Event.CLICK, this, this.onFullScreen, null); _proto.onFullScreen = function () { toggleFullscreen(); };       function launchIntoFullscreen(element) { var element = document.documentElement; if (element.requestFullscreen) { element.requestFullscreen(); } else if (element.mozRequestFullS...

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

1193. 动态加载的图片不响应按钮点击事件 [ 79%]

...); imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, finished); function finished(evt:Event):void { var img:Bitmap = new Bitmap(evt.target.content.bitmapData); stage.addChild(img); img.x=100; img.y = 100; img.addEventListener(function() { trace("QQQQQQQQ") }) } 想给Img设置size 不过...

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

1194. laya.ui.View [ 79%]

...e addChildren(... args):void 批量增加子节点 Node callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Component clearTimer(caller:*, method:Function):void 清理定时器。功能同Lay...

来源: laya_api 发布时间: 20170929

1195. flag的问题 [ 79%]

...解这个判断的具体含义。 下面贴上实例中的完整代码: (function() {     var Sprite = Laya.Sprite;     var Text     = Laya.Text;     var WebGL   = Laya.WebGL;     var flag;     (function()     {          Laya.init(1136, 640, WebGL)...

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

1196. laya.ui.AdvImage [ 79%]

...组件实例。 Node addInputChild(node:Node):NodeNode callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.time...

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

1197. 使用UrlLoader加载图片,flash获取data为byteArray,翻译成h5后data为image? [ 79%]

...nds Sprite { private var urlLoader:URLLoader; private var l:Loader; public function UrlImage() { super(); if(stage) { init(); } else { this.addEventListener(Event.ADDED_TO_STAGE,init); } } private function init(e:Event=null):void { urlLoader=new URLLoader(); urlLoader.dataFormat=URLLoaderDataFormat....

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

1198. laya.ui.CheckBox [ 79%]

...e addChildren(... args):void 批量增加子节点 Node callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Component clearTimer(caller:*, method:Function):void 清理定时器。功能同Lay...

来源: laya_api 发布时间: 20170929

1199. 画出来鼠标轨迹线 [ 79%]

...衣服,并出现在舞台上 //鼠标移动时触发的mousemove事件 function mousemove(){     point.push({         x:Laya.stage.mouseX,         y:Laya.stage.mouseY,         time:Date.now(),     });//给point集合添加一个object,带有当前的鼠标位置...

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

1200. UI-ScrollBar [ 79%]

...utils.Handler; import laya.webgl.WebGL; public class UI_ScrollBar { public function UI_ScrollBar() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya....

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