移动端开发常见问题汇总
//css
-webkit-touch-callout: none; /* disables the callout */
-webkit-user-select:none;//html 用img标签
<img class="qr" src="img/s4/qr.png" alt="">//css 不要用绝对定位 定位时只能用padding
.qr {
padding: 327px 0 0 144px;
}if(/Android [4-6]/.test(navigator.appVersion)) {
window.addEventListener("resize", function() {
if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") {
window.setTimeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
},0);
}
})
}
如果在body里面加了 -webkit-touch-callout: none; 在网易新闻客户端下无法长按保存图片(微信下可以)
需要在长按保存的元素或者它的父级加 -webkit-touch-callout: default;