摘要: setInterval( function(){ render( context ); update(); } , 50 ); window.requestAnimFrame = (function() { return window.requestAnimati... 阅读全文
posted @ 2016-04-17 10:16 快乐~ 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 转载不错的http://developer.51cto.com/art/201008/217874.htm 阅读全文
posted @ 2016-04-11 17:46 快乐~ 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 那个效果很多,比如hao123的头部 document.body.scrollTop document.body.offsetWidth + " (包括边线和滚动条的宽)"; 阅读全文
posted @ 2016-04-11 11:00 快乐~ 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 手风琴就是展示与隐藏 阅读全文
posted @ 2016-04-11 09:09 快乐~ 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 写在前面,到了新公司开始转做前段,之前一直写php,一共写了半年,转过来,jq都用不好,但是还是得不断的学习,谁没菜过。从最简单的开始写,最近也在学习些html5的小游戏,加油吧。js原生写的可以说惨不忍睹,不断加油吧。 html部分: css: jq: js: git地址:https://gith 阅读全文
posted @ 2016-04-07 18:21 快乐~ 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 一、在oracle11G以前卸载oracle会存在卸载不干净,导致再次安装失败的情况,在运行services.msc打开服务,停止Oracle的所有服务。 二、 oracle11G自带一个卸载批处理\app\chen\product\11.2.0\dbhome_1\deinstall\deinsta 阅读全文
posted @ 2016-03-30 14:11 快乐~ 阅读(1408) 评论(0) 推荐(0) 编辑
摘要: 调试ie6真是疯掉了,要到一个包,类firbug,js写的不错。 链接:http://pan.baidu.com/s/1c2JOs0K 密码:fea8 阅读全文
posted @ 2016-03-28 16:40 快乐~ 阅读(156) 评论(0) 推荐(0) 编辑
摘要: JAVASCRIPT Array 函数 array创建数组 concat()连接两个或更多的数组,并返回结果。 join()把数组中所有元素组成字符串。 pop()删除并返回数组的最后一个元素 sort()对数组进行排序 toString()把数组转换为字符串,并返回结果。 push()向数组的末尾添加一个或多个元素,并返回新的长度。 shift()删除并返回数组的第一个元素 reverse(... 阅读全文
posted @ 2016-03-23 12:55 快乐~ 阅读(1708) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-03-17 22:05 快乐~ 阅读(162) 评论(0) 推荐(0) 编辑
摘要: http://lnmp.org/install.html 阅读全文
posted @ 2016-03-17 21:44 快乐~ 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-03-17 16:30 快乐~ 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1、下载PHPExcel插件 2、解压后提取classes文件夹到工作目录,并重命名为PHPExcel 下载地址:http://phpexcel.codeplex.com/ 3、引入与实例化 require_once("PHPExcel/PHPExcel.php"); $objPHPExcel = new PHPExcel(); print_r($objPHPExcel); 4、导出步骤... 阅读全文
posted @ 2016-03-17 08:29 快乐~ 阅读(813) 评论(0) 推荐(0) 编辑
摘要: http_port 3180 transparent cache_mem 1024 MB cache_dir ufs /var/spool/squid 4096 16 256 cache_effective_user squid cache_effective_group squid access_ 阅读全文
posted @ 2016-03-15 19:53 快乐~ 阅读(880) 评论(0) 推荐(0) 编辑
摘要: 环境:虚拟机服务器是centos,apache+php+mysql环境,但是局域网无法访问 1.本机能ping通虚拟机 2.虚拟机也能ping通本机 3.虚拟机能访问自己的web 4.本机无法访问虚拟己的web 后来发现是防火墙将80端口屏蔽了的缘故。 检查是不是服务器的80端口被防火墙堵了,可以通 阅读全文
posted @ 2016-03-15 17:50 快乐~ 阅读(948) 评论(0) 推荐(0) 编辑
摘要: 准备篇: 1、配置防火墙,开启80端口、3306端口vi /etc/sysconfig/iptables-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT #允许80端口通过防火墙-A INPUT -m state --s 阅读全文
posted @ 2016-03-15 16:21 快乐~ 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 基本的操作方法:本文假设你的apahce安装目录为/usr/local/apache2,这些方法适合任何情况 apahce启动命令:推荐/usr/local/apache2/bin/apachectl start apaceh启动 apache停止命令/usr/local/apache2/bin/a 阅读全文
posted @ 2016-03-15 14:26 快乐~ 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 一、 客户端配置: 表单页面 表单的发送方式是post 添加enctype = “multipart/form-data” <form action="doaction.php" method="post" enctype="multipart/from-data"> <input type="fi 阅读全文
posted @ 2016-03-06 15:46 快乐~ 阅读(290) 评论(0) 推荐(0) 编辑
摘要: Warning: mysqli::mysqli(): (HY000/2002): 没有那个文件或目录 解决:把localhost 换成127.0.0.1就好了。 阅读全文
posted @ 2016-03-03 11:28 快乐~ 阅读(906) 评论(0) 推荐(0) 编辑
摘要: 一,生成验证码: 1、生成一张图片; recource imagecreatetruecolor(int $width , int $height) 注意:提前输出图片的header信息,默认是黑色背景/ 2、header (‘content-type:image/png'); 3、 生成白色底图颜 阅读全文
posted @ 2016-02-29 21:58 快乐~ 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 一。基本配置第一步:下载smarty:官网www.smarty.net第二步:加载类文件和更改配置 1. //加载类文件 require_once '../libs/Smarty.class.php';//实例化对象$smarty=new Smarty();//更改配置 如果不更改就不用写$smar 阅读全文
posted @ 2016-02-28 15:26 快乐~ 阅读(423) 评论(0) 推荐(0) 编辑