上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 97 下一页
摘要: 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) 编辑
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 97 下一页