上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页
摘要: class ShapeTest extends egret.DisplayObjectContainer { public constructor() { super(); this.addEventListener(egret.Event.ADDED_TO_STAGE,this.onAddToStage,this); } private onAddToStage(event:eg... 阅读全文
posted @ 2019-03-28 23:29 icon_sunny 阅读(811) 评论(0) 推荐(0) 编辑
摘要: 1, egret 中好像没有看到 ?PC 按键事件的类库, 但是可以直接使用 类似 2, egret 的index.html 里面就会设置目标宽高, data-content-width="640" data-content-height="1136" 然后在页面中如果设计的时候是640 *1136 阅读全文
posted @ 2019-03-28 23:28 icon_sunny 阅读(814) 评论(0) 推荐(0) 编辑
摘要: JavaScript错误:Uncaught RangeError: Maximum call stack size exceeded 堆栈溢出 原因:有小类到大类的递归查询导致溢出 解决方法思想: A、在做递归查询时候由大类到小类去查询 B、匹配结果后及时return 退出,防止过多查询 直译:就是 阅读全文
posted @ 2019-03-28 23:15 icon_sunny 阅读(1613) 评论(0) 推荐(0) 编辑
摘要: 1、public:public表明该数据成员、成员函数是对所有用户开放的,项目中其他脚本都可以直接进行调用 2、private:private表示私有,私有的意思就是除了脚本之外,项目中其他类都不可以直接使用。 3、protected:protected对于子类、朋友来说,就是public的,可以自 阅读全文
posted @ 2019-03-28 23:02 icon_sunny 阅读(2308) 评论(0) 推荐(0) 编辑
摘要: SourceTree破解版是一款非常实用的编程工具,这是一款专业的Git和Hg客户端,界面简洁,操作简单易上手,是开发者的必备工具,欢迎大家来绿色资源网下载体验!SourceTree是一款免费的Git和Hg客户端管理工具,同时也是Mercurial和Subversion版本控制系统工具。支持创建、克 阅读全文
posted @ 2019-03-24 19:02 icon_sunny 阅读(34130) 评论(0) 推荐(2) 编辑
摘要: git如何删除本地所有未提交的更改 git checkout . && git clean -xdf 一般 git clean都是配合git reset 使用的 如果你有的修改已经加入了暂存区 那么,命令git reset --hardgit clean -xdf git回滚到某一个版本 git r 阅读全文
posted @ 2019-03-24 16:37 icon_sunny 阅读(2194) 评论(0) 推荐(0) 编辑
摘要: class test extends egret.DisplayObjectContainer { /** * 类的创建 */ //属性 name: string; age: number; ts: test; //可传参的构造方法 public constructor(name: string, age: number) { super(); this.name ... 阅读全文
posted @ 2019-03-19 13:35 icon_sunny 阅读(688) 评论(0) 推荐(0) 编辑
摘要: class TimerShow extends egret.DisplayObjectContainer{ private now = new Date(); //当前日期 private nowDayOfWeek = this.now.getDay(); //今天本周的第几天 private nowDay = this.now.getDate(); //当前日 ... 阅读全文
posted @ 2019-03-19 13:33 icon_sunny 阅读(928) 评论(0) 推荐(0) 编辑
摘要: Egret 项目文件夹配置和基本容器、动画: 阅读全文
posted @ 2019-03-14 23:50 icon_sunny 阅读(901) 评论(0) 推荐(0) 编辑
摘要: 非代码设计,exml直接操作 设计模式下选中对象,之后[源码],会直接定位到该对象在exml源码中的位置 width.down = "100%" 表示当按钮按下的时候宽度为 100%,其他情况下宽度90%horizontalCenter="0" verticalCenter="0" 表示让图片以中心 阅读全文
posted @ 2019-03-14 23:37 icon_sunny 阅读(655) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页