Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在phonegap android中连续检查横向或纵向的相机方向?
我正在使用cordova2.0。
function yourfunction() { switch(window.orientation) { case -90: case 90: alert('landscape'); break; default: alert('portrait'); break; } } window.addEventListener('onorientationchange', yourfunction);