摘要: 设置父元素 overflow:hidden 阅读全文
posted @ 2015-07-30 14:31 吹鱼算法 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1..myanimate{transition-property: left;transition-duration: .3s;transition-timing-function: ease}xxx.addClass("myanimate");xxx.style.left="500"px;这样写会... 阅读全文
posted @ 2015-07-30 14:30 吹鱼算法 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1..myanimate{transition-property: left;transition-duration: .3s;transition-timing-function: ease}xxx.addClass("myanimate");xxx.style.left="500"px;这样写会... 阅读全文
posted @ 2015-07-30 14:29 吹鱼算法 阅读(227) 评论(0) 推荐(0) 编辑
摘要: autocapitalize="off" 阅读全文
posted @ 2015-07-30 14:19 吹鱼算法 阅读(165) 评论(0) 推荐(0) 编辑
摘要: document.body.addEventListener('touchstart', function () { }); 阅读全文
posted @ 2015-07-30 14:17 吹鱼算法 阅读(152) 评论(0) 推荐(0) 编辑
摘要: -webkit-tap-highlight-color-webkit-tap-highlight-color:rgba(255,255,255,0) 阅读全文
posted @ 2015-07-30 14:16 吹鱼算法 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 获得页面当前 获取焦点的元素 阅读全文
posted @ 2015-07-30 12:44 吹鱼算法 阅读(360) 评论(0) 推荐(0) 编辑
摘要: -webkit-overflow-scrolling:touch; 阅读全文
posted @ 2015-07-30 12:39 吹鱼算法 阅读(133) 评论(0) 推荐(0) 编辑
摘要: $(window.document).bind("touchmove", function() { return false; }); 阅读全文
posted @ 2015-07-30 11:37 吹鱼算法 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 在重叠的区域里,被遮盖的元素绑定click,遮盖的元素绑定touch事件,且touch后遮盖的元素会隐藏的话,就会造成穿透,因为click是在touch之后延迟触发的,浏览器会误认为是在遮盖的元素上触发了click。最好的解决方案是 自己通过touchstart,touchmove,touchend... 阅读全文
posted @ 2015-07-30 11:23 吹鱼算法 阅读(157) 评论(0) 推荐(0) 编辑