1

我正在尝试将 HTLM5 转换为 iOS 移动版本,以使用触摸而不是鼠标进行播放。以与 相同的方式访问触摸的最佳方式是onmousemove什么?

鼠标代码:

document.onmousemove = function(e){
    if (player.X + c.offsetLeft > e.pageX) {
        player.moveLeft();
    } else if (player.X + c.offsetLeft < e.pageX) {
        player.moveRight();
    }

}
4

0 回答 0