PepJs /指针事件polyfill不会在iOs safari上花费

时间:2017-03-30 19:47:45

标签: javascript html5 pointer-events

我正在尝试跨浏览器设置指针事件。现在,大多数浏览器已经支持它,但iOs上的safari却没有。所以我试图用pep-js来填充这个并没有太大的成功。这是我的测试代码:

<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width">
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.pep/0.4.0/jquery.pep.min.js"></script>
  <meta charset="utf-8">

    <style>
     .pixel {position: absolute;background: black;width: 2px;height:2px;}
     #canvas {margin: 20px;background: white;border: 1px solid black;height: 200px;}
    </style>
</head>

<body>
    <div id="canvas" touch-action="none"></div>
    <script>
      function draw(where) {
          var div = document.createElement('div');
          div.classList.add('pixel');
          div.setAttribute('style', 'left:'+where.pageX + 'px;top:'+where.pageY+'px');
          document.querySelector('#canvas').appendChild(div);
      }

      document.querySelector('#canvas')
         .addEventListener('pointermove', function(event) {
             draw(event);
         });
    </script>
</body>
</html>

或我在jsffidle

上创建的其他人

在桌面上,它的工作方式就像魅力,但在iOS上却没有。有什么建议我做错了吗?

1 个答案:

答案 0 :(得分:1)

看起来你使用的是错误的库。

您使用jquery.pep.js但可能需要PEP。在命名方面这是一个不幸的冲突。