以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  移动开发:如何调取手机上指南针的方位角数据,企业微信好像没有提供相应接口。  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=159871)

--  作者:playmal
--  发布时间:2021/1/12 8:59:00
--  移动开发:如何调取手机上指南针的方位角数据,企业微信好像没有提供相应接口。
如题
--  作者:有点蓝
--  发布时间:2021/1/12 9:09:00
--  
https://www.baidu.com/baidu?word=js+陀螺仪
--  作者:playmal
--  发布时间:2021/1/12 9:23:00
--  
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>H5Compass</title>
    <meta name="viewport" c>
    <style type="text/css">
      html, body {
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        width: 320px;
        height: 568px;
        overflow: hidden;
      }
      body {
        position: relative;
      }
      #compass, #gradienter {
        width: 320px;
        height: 568px;
        position: absolute;
        top: 0;
        left: 0;
        transition: left 218ms;
      }
      #gradienter {
        left: 320px;
      }
      .nav {
        list-style: none;
        padding-left: 0;
        position: absolute;
        top: 500px;
        left: 160px;
        margin-left: -15px;
      }

      .nav li {
        height: 8px;
        width: 8px;
        border-radius: 4px;
        background-color: rgba(255, 255, 255, .4);
        display: inline-block;
      }
      .nav li + li {
        margin-left: 10px;
      }
      .nav li.active {
        background-color: rgba(255, 255, 255, 1);
      }
    </style>
  </head>
  <body>
    <div id="compass"></div>
    <canvas id="gradienter" width="640" height="1136"></canvas>
    <ul class="nav">
      <li class="active"></li>
      <li></li>
    </ul>
    <script type="text/javascript" src="./bower_components/raphael/raphael.js"></script>
    <script type="text/javascript" src="./bower_components/hammerjs/hammer.js"></script>
    <script type="text/javascript" src="./index.js"></script>
  </body>
</html>


--  作者:playmal
--  发布时间:2021/1/12 9:23:00
--  
这个HTML5代码如何调用?
--  作者:有点蓝
--  发布时间:2021/1/12 9:31:00
--  
http://www.foxtable.com/mobilehelp/topics/0014.htm

或者
http://www.foxtable.com/mobilehelp/topics/0061.htm
http://www.foxtable.com/mobilehelp/topics/0097.htm

--  作者:playmal
--  发布时间:2021/1/20 16:32:00
--  
一直找不到源码,请问谁有指北针源码。给发一个。