摘要: css优先级 很早以前就知道对同一个元素设置样式时应用样式的优先级是 内联样式>页内样式>大于外联样式 id选择器>class选择器>标签选择器 很简单 一笔带过 但事实上 如果是做前端开发的 还需要更了解详细些 1. !important 是拥有绝对最高优先级的 (设置此值后无论id选择器还是内联 阅读全文
posted @ 2016-03-10 11:13 wifix 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 去掉手机上点击点中的默认高亮效果 -webkit-tap-highlight-color: rgba(0,0,0,0); ios手动启动一下监听touch事件以响应css伪类: document.addEventListener("touchstart", function(){}, true) 传 阅读全文
posted @ 2016-03-09 12:16 wifix 阅读(922) 评论(0) 推荐(0) 编辑
摘要: em rem 相对单位: 也可用于设置padding line-height等em相对当前容器的默认字体设置比如,所有浏览器默认字体都是16px,body{ font-size:62.5%}以后即1em=10px; 1.2em=12px 在线转换tool: http://pxtoem.com/em( 阅读全文
posted @ 2016-03-09 12:09 wifix 阅读(254) 评论(0) 推荐(0) 编辑
摘要: touch w3c规范草案: touch事件 https://dvcs.w3.org/hg/webevents/raw-file/tip/touchevents.htmltouch接口:定义了一个touch事件touch的点(touch point)是一个touch对象,touchList对象是一个 阅读全文
posted @ 2016-03-08 11:47 wifix 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 1. 2.写了后觉得可以优化下 阅读全文
posted @ 2016-03-04 14:57 wifix 阅读(1698) 评论(0) 推荐(0) 编辑
摘要: offsetLeft 获取的是相对于父对象的左边距 left 获取或设置相对于 具有定位属性(position定义为relative)的父对象 的左边距 如果父div的position定义为relative,子div的position定义为absolute,那么子div的style.left的值是相 阅读全文
posted @ 2016-03-04 13:38 wifix 阅读(595) 评论(0) 推荐(0) 编辑
摘要: hybird app(混合式app开发)之ionic 框架平台 guidecordova 创建相应平台的app1. npm install -g cordova //全局安装cordova-cli2.cordova create hello com.example.hello HelloWorld 阅读全文
posted @ 2016-02-29 14:06 wifix 阅读(2025) 评论(0) 推荐(0) 编辑
摘要: 字符串转jquery对象:var tmp = $('<div>dd</div>').attr('id','bbq'); //用$符包裹起来即可jquery对象转字符串: tmp.html(); // ddtmp[0].outerHTML // <div id="bbq">ddd</div> 阅读全文
posted @ 2016-02-26 12:01 wifix 阅读(1897) 评论(0) 推荐(0) 编辑
摘要: notice: 通过命令行执行php文件 如 php -q c:\path\server.php 通过本地web服务器访问 http://127.0.0.1/websocket/index.php即可notice: 需要php5.3或以上的执行环境,和一个web服务器如apache浏览器需支持htm 阅读全文
posted @ 2016-02-18 09:34 wifix 阅读(17472) 评论(4) 推荐(3) 编辑
摘要: 使用laravel elixer npm install --global gulp ok 然后在安装好的laravel 下 npm install 以安装 laravel-elixir sublime 安装AdvancedNewFile 插件 使用ctrl+alt+n 输入路径方便新建文件(也可以 阅读全文
posted @ 2016-02-16 17:37 wifix 阅读(736) 评论(0) 推荐(0) 编辑