摘要: 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) 编辑