简体中文
Appearance
多点触摸事件相关配置, 应用运行中修改 app.config.multiTouch 立即生效。
注意事项
App 结构 下只能设置在 App 的 config 上。
boolean
是否禁用多点触屏产生的缩放/平移/旋转事件, 默认为 false。
// #应用配置 - 禁用多点触屏功能 [Leafer] import { Leafer, Rect } from 'leafer-ui' const leafer = new Leafer({ view: window, multiTouch: { disabled: true } }) leafer.add(Rect.one({ fill: '#32cd79' }, 100, 100))
// #应用配置 - 禁用多点触屏功能 [App] import { App, Rect } from 'leafer-ui' const app = new App({ view: window, tree: { multiTouch: { disabled: true } } }) app.tree.add(Rect.one({ fill: '#32cd79' }, 100, 100))