09 2018 档案

摘要:画三角形 html <div class="triangle"></div> css .triangle{ width: 0; height: 0; border-left:50px solid blue; border-right:50px solid green; border-top:50px 阅读全文
posted @ 2018-09-11 12:47 杨小coding 阅读(182) 评论(0) 推荐(0)
摘要:1.禁止默认事件 document.addEventListener("touchstart",function(ev){ ev=ev||event; ev.preventDefault(); }) 需要使用默认事件的元素上用ev.stopPropagation()阻止冒泡事件. 2.禁止电话与邮箱 阅读全文
posted @ 2018-09-09 15:51 杨小coding 阅读(115) 评论(0) 推荐(0)