我正在尝试跨浏览器设置指针事件。现在,大多数浏览器已经支持它,但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上却没有。有什么建议我做错了吗?