摘要:
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... 阅读全文
摘要:
一.W3C各个版本的flex 2009 version 标志:display: box; or a property that is box-{*} (eg. box-pack) 2011 version 标志:display: flexbox; or the flex() function or 阅读全文
摘要:
上面是http://www.mzk.com/damains.html; http://test.mzk.com/domains.html页面是: 阅读全文
摘要:
background-image:linear-gradient(#555 25%,#000 25%,#000 50%,#ddd 50%,#ddd 75%,#000 75%); 阅读全文
摘要:
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, ... 阅读全文
摘要:
1、尽可能的减少http请求; 2、使用CDN; 3、添加expires头(或者Cache-control); 4、Gzip组件; 5、将css样式放在页面上部; 6、将脚本放在页面底部(包括内联的); 7、避免使用css中的Expressions; 8、将Javascript和Css独立成外部文件 阅读全文
摘要:
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(... 阅读全文
摘要:
// 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; /... 阅读全文