研究调查问卷:请告诉我们您使用 Blockly 的体验
开始调查问卷
blockly > browserEvents
BrowserEvents 命名空间
函数
功能 |
说明 |
bind(node, name, thisObject, func) |
绑定一个应调用的事件处理脚本,无论其是否属于进行中的触摸流。用于不属于多部分手势的事件(例如,鼠标悬停表示提示)。 |
conditionalBind(node, name, thisObject, func, opt_noCaptureIdentifier) |
绑定一个在不属于有效触摸流时可以忽略的事件处理脚本。此属性适用于开始或继续执行多部分手势的事件(例如,mousedown 或 mousemove,可能是拖动或点击的一部分)。 |
getScrollDeltaPixels(e) |
返回鼠标事件的滚动增量(以像素为单位)。 |
isRightButton(e) |
若此事件为右键点击,则返回 true。 |
isTargetInput(e) |
如果此事件定位的是文本输入 widget,则返回 true? |
mouseToSvg(e, svg, Matrix) |
返回指定鼠标事件的转换后坐标。原点 (0,0) 是 Blockly SVG 的左上角。 |
unbind(bindData) |
解除一个或多个事件事件与函数调用的绑定。 |
类型别名
类型别名 |
说明 |
数据 |
使用 bind 和 conditionalBind 时,用于解除绑定事件的块不透明事件数据。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2023-12-01。
[null,null,["最后更新时间 (UTC):2023-12-01。"],[[["The `browserEvents` namespace provides functions for managing browser events within Blockly, particularly for mouse and touch interactions."],["It offers methods for binding, conditionally binding, and unbinding event handlers to DOM elements."],["Functions are included to determine event specifics, such as right-clicks, scroll deltas, and target elements."],["It facilitates converting mouse event coordinates to SVG coordinates within the Blockly workspace."],["The namespace utilizes a `Data` type alias for managing event binding data for efficient unbinding."]]],[]]