摘要: 魔兽争霸RPG地图开发速成教程 1 打开WE编辑器 下载地址 http://rpg.dz.blizzard.cn/authors-home/editor-download 然后新建地图 2 打开工具面板 拖入英雄到场景 (这里说明下 玩家1 就是主机 就是自己) 3 打开物品编辑器 修改 物品和英雄 阅读全文
posted @ 2019-11-17 20:34 newmiracle宇宙 阅读(2976) 评论(0) 推荐(0) 编辑
摘要: javascript json写法 var shuxing = {name:"super",sex:"19",work:"IT"}; 这个key不加引号和加引号都可以 主意 key和value不要用单引号 阅读全文
posted @ 2019-11-17 15:40 newmiracle宇宙 阅读(508) 评论(0) 推荐(0) 编辑
摘要: linux 用du查看硬盘信息 <pre>[root@iZ238qupob7Z web]# df -hFilesystem Size Used Avail Use% Mounted on/dev/xvda1 20G 7.9G 11G 43% /tmpfs 938M 0 938M 0% /dev/sh 阅读全文
posted @ 2019-11-17 15:40 newmiracle宇宙 阅读(309) 评论(0) 推荐(0) 编辑
摘要: navicat远程连接mysql的方法1 先在打开phpmyadmin 添加用户 用户名和密码自己设置 设置如下 2 关闭防火墙service iptables status可以查看到iptables服务的当前状态。 开启: service iptables start 关闭: service ip 阅读全文
posted @ 2019-11-17 15:40 newmiracle宇宙 阅读(918) 评论(0) 推荐(0) 编辑
摘要: css3 rem手机自适应框架 rem是按照html的字体大小来 所以 不同宽度浏览器 htmlfont-size不一样 就可以做到自适应了 此方法比百分比方便<pre><!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <tit 阅读全文
posted @ 2019-11-17 15:39 newmiracle宇宙 阅读(837) 评论(0) 推荐(0) 编辑
摘要: javascript播放图片序列帧1 先预加载<pre>var load_img = [];for(k=0;k&lt;=16;k++){load_img.push( '/cjsxy/images/chuanyue/'+k+'.jpg' );} //资源图片加载jQuery.imgpreload(lo 阅读全文
posted @ 2019-11-17 15:38 newmiracle宇宙 阅读(2396) 评论(0) 推荐(0) 编辑
摘要: <img />就算他不设置地址 在手机上 他默认是黑色背景的 所以 display:none才是真正不显示 阅读全文
posted @ 2019-11-17 15:38 newmiracle宇宙 阅读(127) 评论(0) 推荐(0) 编辑
摘要: CSS3 滤镜Filter亮度动画 -webkit-filter:brightness 值越高 亮度越亮<pre><!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> .im 阅读全文
posted @ 2019-11-17 15:37 newmiracle宇宙 阅读(586) 评论(0) 推荐(0) 编辑
摘要: CSS3 clip裁剪动画 下面是比较简单的例子 <pre><html><head><style type="text/css">img {position:absolute;clip:rect(0px 120px 151px 0px);animation: clipMe 5s linear inf 阅读全文
posted @ 2019-11-17 15:37 newmiracle宇宙 阅读(468) 评论(0) 推荐(0) 编辑
摘要: svg描边路径动画<pre><!DOCTYPE html><html> <head> <meta charset="UTF-8"> <style> html,body{ width:100%; height:100%; } /*1000是线条(path)的长度 stroke-dasharray和st 阅读全文
posted @ 2019-11-17 15:36 newmiracle宇宙 阅读(313) 评论(0) 推荐(0) 编辑
摘要: mysql count的理解 1 select count(tel) as telcount from info;如果tel列有null 将不会被统计进去 2 count(*) 这样写性能更好 3 MYISAM引擎 只有当没有where的时候 count(*) 查询才会达到神一样的速度!!看下面例子 阅读全文
posted @ 2019-11-17 12:43 newmiracle宇宙 阅读(173) 评论(0) 推荐(0) 编辑
摘要: php explode容易犯的错误 <pre> $pos = strpos($v, 'Controller'); if (is_numeric($pos)) { $kongzhiqifege = explode('Controller', $v); $kongzhiqi = $kongzhiqife 阅读全文
posted @ 2019-11-17 12:43 newmiracle宇宙 阅读(392) 评论(0) 推荐(0) 编辑
摘要: mysql float类型详解float类型长度必须设置3以上 不然会报错 out of range如果设置3 就只是 整数+小数的长度 比方说3.23 3.2等等 3.333就不行了 4位了 阅读全文
posted @ 2019-11-17 12:41 newmiracle宇宙 阅读(709) 评论(0) 推荐(0) 编辑
摘要: mysql 5 以后 都按照字符来算 不是字节 char(10)可以放10个汉字或者10个字母 阅读全文
posted @ 2019-11-17 12:41 newmiracle宇宙 阅读(129) 评论(0) 推荐(0) 编辑
摘要: MySql计数器,如网站点击数,如何实现高性能高并发的计数器功能 由于并发的时候 不能同时写入一行数据 所以要分开写<pre>先创建表CREATE TABLE `article_view`( `article_id` int(11) NOT NULL, `pond` tinyint(4) NOT N 阅读全文
posted @ 2019-11-17 12:40 newmiracle宇宙 阅读(201) 评论(0) 推荐(0) 编辑
摘要: <pre><svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg"> <path d="M73 65 L210 869 L415 339"/> </svg></pre> 3个点围成三角形 阅读全文
posted @ 2019-11-17 12:39 newmiracle宇宙 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 比较简单的倒影效果 <pre><div class="box-reflect"><img src="https://www.baidu.com/img/bd_logo1.png" alt="" height="200"/></div> .box-reflect { margin: 210px aut 阅读全文
posted @ 2019-11-17 12:39 newmiracle宇宙 阅读(113) 评论(0) 推荐(0) 编辑
摘要: nginx rewrite重写规则简明笔记 比方说http://newmiracle.cn/?p=888我要改成能这个访问http://newmiracle.cn/p888/ 首先用正则获取888 ^p([0-9]*)/$ 然后 <pre> location / { root /home/www/w 阅读全文
posted @ 2019-11-17 12:38 newmiracle宇宙 阅读(136) 评论(0) 推荐(0) 编辑
摘要: navcat搜索字符串方法右键点击数据库 查找字符串即可。。 阅读全文
posted @ 2019-11-17 12:38 newmiracle宇宙 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 在项目中使用接口的比较多,在客户端跨域访问,jquery中只能使用jquery ajax的jsonp方法。 值得注意的是,jQuery.ajax()只支持get方式的跨域,post的方式是不支持的。<pre> <script type="text/javascript"> // 简写形式 $.get 阅读全文
posted @ 2019-11-17 12:37 newmiracle宇宙 阅读(131) 评论(0) 推荐(0) 编辑