Skip to content

Instantly share code, notes, and snippets.

@imEhllBdPGMVaArZ
Created May 23, 2015 06:58
Show Gist options
  • Save imEhllBdPGMVaArZ/a8006c0de9d78525c245 to your computer and use it in GitHub Desktop.
Save imEhllBdPGMVaArZ/a8006c0de9d78525c245 to your computer and use it in GitHub Desktop.
做地用页面的时候需要用到的通用js,慢慢积累- -
// 横竖屏
(function() {
orientationHandle();
}());
function orientationHandle() {
if(window.orientation === 0) { // 竖屏
} else { // 横屏
}
};
window.onorientationchange = orientationHandle;
// 禁止iOS回弹效果
document.addEventListener("touchmove", function(e){
e.preventDefault();
}, true);
// loader
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment