上一页 1 ··· 86 87 88 89 90 91 92 93 94 ··· 97 下一页
摘要: cocoscreator动态修改数据教程<pre> cc.Class({ extends: cc.Component, properties: { label: { default: null, type: cc.Label }, label1: { default: null, type: cc. 阅读全文
posted @ 2019-11-12 15:38 newmiracle宇宙 阅读(1369) 评论(0) 推荐(0) 编辑
摘要: 1 先做子精灵 wrapmode模式不一样的精灵动画 然后再做父精灵动画 准没错 ps:一旦创建了父精灵 wrapmode会自动给所有子精灵 wrapmode加上 这个时候 需要 给子精灵手动添加anim组件 创建个clip拖进去 刷新下就好 一般建议直接在父精灵设置 全部normal就好 不要在紫 阅读全文
posted @ 2019-11-12 15:37 newmiracle宇宙 阅读(357) 评论(0) 推荐(0) 编辑
摘要: nginx location笔记= 开头表示精确匹配^~ 开头表示uri以某个常规字符串开头,理解为匹配 url路径即可。nginx不对url做编码,因此请求为/static/20%/aa,可以被规则^~ /static/ /aa匹配到(注意是空格)。~ 开头表示区分大小写的正则匹配~* 开头表示不 阅读全文
posted @ 2019-11-12 15:36 newmiracle宇宙 阅读(62) 评论(0) 推荐(0) 编辑
摘要: layaair 3D教程 里面模型包括摄像机默认中心点都是中心 <pre> var camera = (scene.addChild(new Laya.Camera(0, 0.1, 100))); camera.transform.translate(new Laya.Vector3(0, 10, 阅读全文
posted @ 2019-11-12 15:36 newmiracle宇宙 阅读(519) 评论(0) 推荐(0) 编辑
摘要: nginx服务器图片防盗链的方法<pre> location ~* \.(gif|jpg|png|jpeg)$ { expires 30d; valid_referers *.shuchengxian.com www.shuchengxian.com; if ($invalid_referer) { 阅读全文
posted @ 2019-11-12 15:35 newmiracle宇宙 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 手机端滑动效果简单做法把高度设死 然后overflow-y: scroll; 就可以了 可以用手滑动了 不过他的优先级很低 会被body或者swiper覆盖 所以一般这种情况 就只能取消body和swiper的触摸机制ps:给body高度设置100% 也行 阅读全文
posted @ 2019-11-12 15:34 newmiracle宇宙 阅读(408) 评论(0) 推荐(0) 编辑
摘要: navicat for Mysql查询数据不能直接修改 原来的sql语句: <pre> select id,name,title from table where id = 5;</pre> 修改为: <pre> select * from table where id = 5;</pre> 然后下 阅读全文
posted @ 2019-11-12 15:34 newmiracle宇宙 阅读(531) 评论(0) 推荐(0) 编辑
摘要: html5手机端播放音效不卡的方法线下载http://wxserver.knowway.cn/solosea/js/audioEngine.js 这个是性能不错 然后直接播放音效就可以了 audioEngine.playEffect('/solosea1/music/laidian.mp3', fa 阅读全文
posted @ 2019-11-12 15:33 newmiracle宇宙 阅读(118) 评论(0) 推荐(0) 编辑
摘要: centos安装教程1 CentOS-7-x86_64-DVD-1511.iso 这个是dvd版本2 CentOS-7-x86_64-Minimal-1511.iso 这个迷你版 是没有图形界面的 安装centos 必须要借助 光盘或者u盘 安装 因为没有exe。。不能从硬盘上安装 1 先看看bio 阅读全文
posted @ 2019-11-12 15:32 newmiracle宇宙 阅读(99) 评论(0) 推荐(0) 编辑
摘要: CSS3 clip裁剪动画 下面是比较简单的例子<pre> <style type="text/css">img {position:absolute;clip:rect(0px 120px 151px 0px);animation: clipMe 5s linear infinite;} @-we 阅读全文
posted @ 2019-11-12 15:30 newmiracle宇宙 阅读(111) 评论(0) 推荐(0) 编辑
上一页 1 ··· 86 87 88 89 90 91 92 93 94 ··· 97 下一页