默認(rèn)將手機垂直,且正面(90度)沖著自己
alpha:左右旋轉(zhuǎn)
beta:前后旋轉(zhuǎn)
gamma:扭轉(zhuǎn)(自轉(zhuǎn))
<html> <head> <title>DeviceOrientationEvent</title> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <script src="js/common/jquery.min.js"></script> <script src="js/common/eventutil.js"></script> </head> <body> <p id="arrow"></p> </body> </html> <script> try { var text = ""; window.addEventListener("deviceorientation", orientationHandler, false); function orientationHandler(event) { text = "" var arrow = document.getElementById("arrow"); text += "左右旋轉(zhuǎn):rotate alpha{" + Math.round(event.alpha) + "deg)<p>"; text += "前后旋轉(zhuǎn):rotate beta{" + Math.round(event.beta) + "deg)<p>"; text += "扭轉(zhuǎn)設(shè)備:rotate gamma{" + Math.round(event.gamma) + "deg)<p>"; arrow.innerHTML = text; } } catch (e) { $("#arrow").html(e.message) } </script>
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com