大约有 9 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
...te(); Laya.stage.addChild(this.ape1); this.ape1.loadImage(monkey2Path); // 设置轴心点为中心 this.ape1.pivot(55, 72); this.ape1.pos(Laya.stage.width / 2 - gap, Laya.stage.height / 2); // 不设置轴心点默认为左上角 this.ape2 = new Sprite(); Laya.stage.addChild(this.ape2); this.ape2.l...
来源: Laya2.0_示例 发布时间: 20241117
...CoralRect(); this.createDeepSkyblueRect(); this.createDarkOrchidRect(); // 设置舞台 Laya.stage.name = "暗灰色舞台" Laya.stage.on(Event.MOUSE_DOWN, this, this.onDown); } createCoralRect() { const Sprite = Laya.Sprite, Event = Laya.Event; let coralRect = new Sprite(); coralRect.graphics.drawR...
来源: Laya2.0_示例 发布时间: 20241117
... Laya.GlowFilter; let glowFilter = new GlowFilter("#ffff00", 10, 0, 0); // 设置滤镜集合为发光滤镜 this.ape.filters = [glowFilter]; } } new Filters_Glow();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import GlowFilter = Laya.GlowFilter; import Texture = Laya.Textur...
来源: Laya2.0_示例 发布时间: 20241117
...("res/ui/tree/clip_selectBox.png", 1, 2); selectBox.name = "selectBox"; // 设置 selectBox 的name 为“selectBox”时,将被识别为树结构的项的背景。2帧:悬停时背景、选中时背景。 selectBox.height = 32; selectBox.x = 13; selectBox.left = 12; this.addChild(selectBox); le...
来源: Laya2.0_示例 发布时间: 20241117
...aphics.drawRect(0, 0, w, h, "#FF7F50"); this.button.pivot(w / 2, h / 2); //设置宽高(要接收鼠标事件必须设置宽高,否则不会被命中) this.button.size(w, h); this.button.x = (Laya.stage.width - TrackLength) / 2; this.button.y = Laya.stage.height / 2; this.button.on(Event.MOUSE...
来源: Laya2.0_示例 发布时间: 20241117
...his.onSelect); list.renderHandler = new Handler(this, this.updateItem); // 设置数据项为对应图片的路径 let data = []; for (let i = 0; i = []; for (var i: number = 0; i < 10; ++i) { data.push("res/ui/listskins/1.jpg"); data.push("res/ui/listskins/2.jpg"); data.push("res/ui/listskins/3.jpg...
来源: Laya2.0_示例 发布时间: 20241117
...iduCoord(data) { if (data.status == 0) { let position = data.points[0]; // 设置标注物位置 marker.setPosition(position); map.panTo(position); map.setZoom(17); } } onError(e) { const Geolocation = Laya.Geolocation; if (e.code == Geolocation.TIMEOUT) alert("获取位置超时"); else if (e.code ...
来源: Laya2.0_示例 发布时间: 20241117
...teractionArea = new Sprite(); guideContainer.addChild(interactionArea); // 设置叠加模式 interactionArea.blendMode = "destination-out"; // 设置点击区域 hitArea = new Laya.HitArea(); hitArea.hit.drawRect(0, 0, Laya.stage.width, Laya.stage.height, "#000"); guideContainer.hitArea = hitArea; ...
来源: Laya2.0_示例 发布时间: 20241117
...moveLimit, distance= 0, time= 2000){ if (eventName === "dragTopLimit") { //设置下拉的最大橡皮筋高度,只有在启用了停止滚动的功能后有效 this.refreshList.scrollBar.topMoveLimit = moveLimit; } else if (eventName === "dragBottomLimit") { this.refreshList.scrollBar.bottomMoveLim...
来源: Laya2.0_示例 发布时间: 20241117