大约有 42 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
...ar svg = new Blob([data], {type: 'image/svg+xml'}); var url = DOMURL.createObjectURL(svg); img.src = url; img.style.position ="absolute"; img.style.zIndex = 99999 document.body.appendChild(img); ``` 怎么运行呢?打开谷歌浏览器,随便打开你一个空白网页,F12,把上面的代...
来源: Laya2.0_文档 发布时间: 20210715
...声名的模块里定义类型 export class Demo { constructor( options: Object ); addScene( title: string, initfunc: Function ): void; restartCurrentScene(): void; } } //多级模块 declare module laya.ani.bone { class EventData { name:string; intValue:number; floatValue:number; stringValue:string...
来源: Laya2.0_文档 发布时间: 20210715
...ocument.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除释放; }; img.src = window.URL.createObjectURL(blob); document.body.appendChild(img); } } xhr.send(); ``` 上面这个方法是用了浏览器自身提供的方法来把二进制转换成图片...
来源: Laya2.0_文档 发布时间: 20210714
...ocument.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除释放; }; img.src = window.URL.createObjectURL(blob); document.body.appendChild(img); } } xhr.send(); ``` 上面这个方法是用了浏览器自身提供的方法来把二进制转换成图...
来源: Laya2.0_文档 发布时间: 20210714
...d("res/data.data","","get","text"); } private function processHandler(data:Object):void { trace(data); } private function completeHandler(data:Object):void { } private function errorHandler(e:Object):void { } } } ``` 上面这个示例我们发送了一个简单的请求,方式是get方式。...
来源: Laya2.0_文档 发布时间: 20210715
...ass window { public function window() { } public static function alert(msg:Object):void { } } } ``` `/*[IF-FLASH]*/`是LayaCompiler的编译宏,其后的类不会被编译为JS,对此不了解的,请先去了解[宏编译教程文档](https://github.com/layabox/layaair-doc/blob/master/Chinese/...
来源: Laya2.0_文档 发布时间: 20210715
...et.on(Event.ERROR,this,errorHandler); } private function openHandler(event:Object = null):void { //正确建立连接; } private function receiveHandler(msg:Object = null):void { ///接收到数据触发函数 } private function closeHandler(e:Object= null):void { //关闭事件 } private function...
来源: Laya2.0_文档 发布时间: 20210715
...络连接中,我们接收和发送网络消息。 ```typescript var msg:Object ={name:"xxx",age:18,weight:65.5,height:175}; var byte:Byte = new Byte();//实例化byte数组 byte.endian = Byte.LITTLE_ENDIAN;//设置大小端 byte.writeUTFString(msg.name);//写入数据 byte.writeByte(msg.age); byte...
来源: Laya2.0_文档 发布时间: 20210715
...age.setItem("key","hello"); LocalStorage.setItem("data","hello"); var data:Object = {"index":0,"index1":1}; LocalStorage.setJSON("item",data);//直接传入Object,接口内部转化为JSON格式字符串存储 } } } ``` 在chrome中运行之后按快捷键F12,结果如下图所示: ![1](img/1....
来源: Laya2.0_文档 发布时间: 20210715
...代表LayaAir 引擎Sprite3D中并不支持该属性的导出。 - ## Game Object ![Game Object](./img/GameObject.png) - name - Static - Layer - Transform 1. Position 2. Rotation 3. Scale - Component - Camera ![Camera](./img/components/InspectorCamera35.png) 1. Clear Flags - Skybox - Solid Color - D...
来源: Laya2.0_文档 发布时间: 20200822