上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: 使用bootstrap-datetimepicker控件时,引入以下文件 。。。。。。。。。 重点: input框中一定要添加form-control类名,要不然左右箭头是显示不出来的; 阅读全文
posted @ 2018-09-06 10:10 董七 阅读(2897) 评论(0) 推荐(0) 编辑
摘要: (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... 阅读全文
posted @ 2018-09-05 09:28 董七 阅读(894) 评论(0) 推荐(0) 编辑
摘要: ::-webkit-scrollbar-track-piece { background-color:#f5f5f5; border-left:1px solid #d2d2d2; } ::-webkit-scrollbar { width:3px; height:13px; } ::-webkit-scrollbar-thumb { background-color:#c2c2c2;... 阅读全文
posted @ 2018-09-04 14:46 董七 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 1.html 2.css 3.js 4.效果图 阅读全文
posted @ 2018-08-31 15:42 董七 阅读(564) 评论(0) 推荐(0) 编辑
摘要: 1.text-shadow 2.transform-style 3.animation 4.keyframes 关键帧动画 5.transform 常用的有:rotate() 旋转 translate() 移动 scale()缩放 6.border-image border-image:url("" 阅读全文
posted @ 2018-08-29 21:15 董七 阅读(193) 评论(0) 推荐(0) 编辑
摘要: //非IE事件绑定document.getElementById("mian").addEventListener('click',function(e){...},false); window.addEventListener('load',function(e){...},false); //I 阅读全文
posted @ 2018-08-29 10:31 董七 阅读(95) 评论(0) 推荐(0) 编辑
摘要: //非IE事件绑定document.getElementById("mian").addEventListener('click',function(e){...},false); window.addEventListener('load',function(e){...},false); //I 阅读全文
posted @ 2018-08-29 10:30 董七 阅读(188) 评论(0) 推荐(0) 编辑
摘要: //防止发生默认浏览器行为的通用函数 function stopDefault( e ){ //防止默认浏览器行为(W3C) if(e && e.preventDefault){ e.preventDefault(); } //IE中阻止浏览器行为的捷径 else{ window.event.returnValue = false; } return false;... 阅读全文
posted @ 2018-08-29 10:13 董七 阅读(94) 评论(0) 推荐(0) 编辑
摘要: //阻止浏览器默认的事件冒泡事件 function stopBubble(e){ //非IE浏览器 if(e && e.stopPropagation){ e.stopPropagation(); } //IE浏览器 else{ window.event.cancelBubble = true; } } var li = document.getElementsByTagNa... 阅读全文
posted @ 2018-08-29 10:03 董七 阅读(329) 评论(0) 推荐(0) 编辑
摘要: http://dean.edwards.name/packer/ 压缩成功以后,直接使用即可 阅读全文
posted @ 2018-08-28 16:24 董七 阅读(425) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页