摘要:
使用bootstrap-datetimepicker控件时,引入以下文件 。。。。。。。。。 重点: input框中一定要添加form-control类名,要不然左右箭头是显示不出来的; 阅读全文
摘要:
(function(window) { var theUA = window.navigator.userAgent.toLowerCase(); if ((theUA.match(/msie\s\d+/) && theUA.match(/msie\s\d+/)[0]) || (theUA.match(/trident\s?\d+/) && theUA.match(/triden... 阅读全文
摘要:
::-webkit-scrollbar-track-piece { background-color:#f5f5f5; border-left:1px solid #d2d2d2; } ::-webkit-scrollbar { width:3px; height:13px; } ::-webkit-scrollbar-thumb { background-color:#c2c2c2;... 阅读全文
摘要:
1.html 2.css 3.js 4.效果图 阅读全文
摘要:
1.text-shadow 2.transform-style 3.animation 4.keyframes 关键帧动画 5.transform 常用的有:rotate() 旋转 translate() 移动 scale()缩放 6.border-image border-image:url("" 阅读全文
摘要:
//非IE事件绑定document.getElementById("mian").addEventListener('click',function(e){...},false); window.addEventListener('load',function(e){...},false); //I 阅读全文
摘要:
//非IE事件绑定document.getElementById("mian").addEventListener('click',function(e){...},false); window.addEventListener('load',function(e){...},false); //I 阅读全文
摘要:
//防止发生默认浏览器行为的通用函数 function stopDefault( e ){ //防止默认浏览器行为(W3C) if(e && e.preventDefault){ e.preventDefault(); } //IE中阻止浏览器行为的捷径 else{ window.event.returnValue = false; } return false;... 阅读全文
摘要:
//阻止浏览器默认的事件冒泡事件 function stopBubble(e){ //非IE浏览器 if(e && e.stopPropagation){ e.stopPropagation(); } //IE浏览器 else{ window.event.cancelBubble = true; } } var li = document.getElementsByTagNa... 阅读全文
摘要:
http://dean.edwards.name/packer/ 压缩成功以后,直接使用即可 阅读全文