摘要: cursor -- 定义鼠标样式 取值: [ [ ,]* [ auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize | text | wait | help | prog... 阅读全文
posted @ 2016-06-24 11:55 honely1314 阅读(223) 评论(0) 推荐(0) 编辑
摘要: ... 阅读全文
posted @ 2016-06-12 13:49 honely1314 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 一.W3C各个版本的flex 2009 version 标志:display: box; or a property that is box-{*} (eg. box-pack) 2011 version 标志:display: flexbox; or the flex() function or 阅读全文
posted @ 2016-06-06 10:45 honely1314 阅读(24482) 评论(0) 推荐(2) 编辑
摘要: 上面是http://www.mzk.com/damains.html; http://test.mzk.com/domains.html页面是: 阅读全文
posted @ 2016-05-26 14:03 honely1314 阅读(150) 评论(0) 推荐(0) 编辑
摘要: background-image:linear-gradient(#555 25%,#000 25%,#000 50%,#ddd 50%,#ddd 75%,#000 75%); 阅读全文
posted @ 2016-05-26 11:01 honely1314 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 1 var arr = [ "one", "two", "three", "four"]; 2 $.each(arr, function(){ 3 alert(this); 4 }); 5 //上面这个each输出的结果分别为:one,two,three,four 6 7 var arr1 = [[1, 4, 3], [4, ... 阅读全文
posted @ 2016-05-25 10:41 honely1314 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 最近用到一种方法: 阅读全文
posted @ 2016-05-19 10:00 honely1314 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1、尽可能的减少http请求; 2、使用CDN; 3、添加expires头(或者Cache-control); 4、Gzip组件; 5、将css样式放在页面上部; 6、将脚本放在页面底部(包括内联的); 7、避免使用css中的Expressions; 8、将Javascript和Css独立成外部文件 阅读全文
posted @ 2016-05-16 16:28 honely1314 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1 div.onclick=function(e){ 2 var e=e||window.event; 3 var target=e.target||e.srcElement; 4 if(target.nodeName.toLowerCase()=='input'){ 5 alert('weituo!'); 6 } 7 if(... 阅读全文
posted @ 2016-05-12 17:32 honely1314 阅读(121) 评论(0) 推荐(0) 编辑
摘要: // var mov=document.getElementById('mov'); // var bg=document.getElementById('bg'); // mov.onmousedown=function(event){ // var event=event||window.event; // var disX=event.clientX-mov.offsetLeft; /... 阅读全文
posted @ 2016-05-12 17:01 honely1314 阅读(120) 评论(0) 推荐(0) 编辑