我正在使用Windows.Ui.input.gestureRecognizer api并向其提供事件。对于IE10,我没有获得扩展属性,通过它我们可以实现缩放手势。我在IE11中得到它。执行缩放时
function processMouse(evt) {
evt.stopImmediatePropagation = true;
var pp = evt.getCurrentPoint(document.body);
gr.processMouseWheelEvent(pp, evt.shiftKey, evt.ctrlKey);
};
evt.ctrlKey在ie中为false,但在ie11中为true。有没有修复来检测放大ie10。
答案 0 :(得分:0)
对于桌面,扩展属性来自触摸板驱动程序,因此安装工作正常。还必须在触摸板设置中启用捏缩放。