标签: touch

  • Touch 事件备忘

    过了一次文档,做个备忘。

    Touch 接口

    每一个单独的触摸点,不可变。

    interface Touch {
        readonly attribute long        identifier;
        readonly attribute EventTarget target;
        readonly attribute long        screenX;
        readonly attribute long        screenY;
        readonly attribute long        clientX;
        readonly attribute long        clientY;
        readonly attribute long        pageX;
        readonly attribute long        pageY;
    };
    

    (更多…)