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

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

261. laya中怎样使用jQuery写广告轮播 [ 51%]

...,就不用什么第三方js了,用几个显示对象,然后加一个timer,定期的移动显示对象的位置就可以实现你的需求 2018-08-31 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 假装不食烟火 相关问题 ...

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

262. laya.ui.Dialog [ 51%]

...被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite timer : Timer时间控制器,默认为Laya.timer。Node toolTip : * 鼠标悬停提示。 可以赋值为文本 String 或函数 Handler ,用来实现自定义样式的鼠标提示和参数携带等。 Component top : Nu...

来源: laya_api 发布时间: 20170929

263. laya.html.dom.HTMLDivElement_API3.0 [ 51%]

...scaleX scaleY scene scrollRect skewX skewY stage staticCache style texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance addInputChild callLater clearTimer contains customRender destroyChildr...

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

264. 高级应用-寻路导航 [ 51%]

...ntCount].x, this.path[this.nextPathIndex++ % this.pointCount].z); }); Laya.timer.loop(40, this, loopfun); } function loopfun() { if (this._everyPath && this.index ; private _everyPath: any; private _position: Laya.Vector3 = new Laya.Vector3(0, 0, 0); private _upVector3: Laya.Vector3 = new Laya.Vecto...

来源: Laya_示例 发布时间: 20241118

265. laya.ui.ProgressBar_API3.0 [ 51%]

...tage.addChild(progressBar);//将 progressBar 添加到显示列表。 Laya.timer.once(3000, this, changeValue);//设定 3000ms(毫秒)后,执行函数changeValue。 } private function changeValue():void { trace("改变进度条的进度值。"); progressBar.value = 0.6; } private function onCh...

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

266. laya.d3.core.scene.VRScene [ 51%]

...被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite timer : Timer时间控制器,默认为Laya.timer。Node transform : Matrix 对象的矩阵信息。通过设置矩阵可以实现节点旋转,缩放,位移效果。 矩阵更多信息请参考 Matrix Sprite treeLevel :...

来源: laya_api 发布时间: 20170422

267. laya.ui.ViewStack_API3.0 [ 51%]

...ectedIndex selection setIndexHandler skewX skewY stage staticCache texture timer toolTip top transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance addItem bubbleEvent callLater clearTimer contains customRe...

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

268. laya.ui.VSlider [ 51%]

...显示在屏幕之前调用,一般用于延迟计算数据。 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node customRender(context:Context, x:Numbe...

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

269. 问一下这个问题要怎么改啊? [ 51%]

...已经无效) 关于逻辑贞更新间隔机制、时间和其他一些Timer相关的问题 问题状态 最新活动: 2017-05-22 18:18 浏览: 834 关注: 2 人 cuixueying • 2017-05-22 20:40 要不,你把你可以运行但是报错的例子发我下,我来测试下吧! anlijames • 2017-...

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

270. ProgressBar属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 51%]

...dler = new Handler(this, onChange); Laya.stage.addChild(progressBar); Laya.timer.loop(100, this, changeValue); } function changeValue() { if (progressBar.value >= 1) progressBar.value = 0; progressBar.value += 0.05; } function onChange(value) { console.log("进度:" + Math.floor(value * 100) + "%"...

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