摘要:
设置父元素 overflow:hidden 阅读全文
摘要:
1..myanimate{transition-property: left;transition-duration: .3s;transition-timing-function: ease}xxx.addClass("myanimate");xxx.style.left="500"px;这样写会... 阅读全文
摘要:
1..myanimate{transition-property: left;transition-duration: .3s;transition-timing-function: ease}xxx.addClass("myanimate");xxx.style.left="500"px;这样写会... 阅读全文
摘要:
autocapitalize="off" 阅读全文
摘要:
document.body.addEventListener('touchstart', function () { }); 阅读全文
摘要:
-webkit-tap-highlight-color-webkit-tap-highlight-color:rgba(255,255,255,0) 阅读全文
摘要:
获得页面当前 获取焦点的元素 阅读全文
摘要:
-webkit-overflow-scrolling:touch; 阅读全文
摘要:
$(window.document).bind("touchmove", function() { return false; }); 阅读全文
摘要:
在重叠的区域里,被遮盖的元素绑定click,遮盖的元素绑定touch事件,且touch后遮盖的元素会隐藏的话,就会造成穿透,因为click是在touch之后延迟触发的,浏览器会误认为是在遮盖的元素上触发了click。最好的解决方案是 自己通过touchstart,touchmove,touchend... 阅读全文