Event is a collection of event types. Generally, when an event occurs, the Event object is passed as a parameter to the event listener.

Event 是事件类型的集合。一般当发生事件时,Event 对象将作为参数传递给事件侦听器。

构造函数

属性

button: number = 0

The mouse button.

  • 0: Main button, usually the left button
  • 1: Auxiliary button, usually the middle button (wheel button)
  • 2: Secondary button, usually the right button
  • 3: Fourth button, typically the browser Back button
  • 4: Fifth button, typically the browser Forward button

鼠标按键,

  • 0:主按键,通常指鼠标左键
  • 1:辅助按键,通常指鼠标滚轮中键
  • 2:次按键,通常指鼠标右键
  • 3:第四个按钮,通常指浏览器后退按钮
  • 4:第五个按钮,通常指浏览器的前进按钮
currentTarget: any

The current propagation object of the event.

事件当前冒泡对象。

delta: number = 0

The scroll wheel increments.

滚轮滑动增量。

isDblClick: boolean

Specifies whether this is a double-click.

是否双击。

nativeEvent: MouseEvent | TouchEvent | WheelEvent | KeyboardEvent

The original browser event.

原生浏览器事件。

target: any

The triggering object of the event.

事件目标触发对象。

touchId: number = 0

Unique identifier assigned to the touch point (as an int).

分配给触摸点的唯一标识号(作为 int)。

touchPos: Point

The clicked position.

点击坐标。

type: string

The event type.

事件类型。

ADDED: string = "added"

Defines the value of the type property of an added event object.

定义 added 事件对象的 type 属性值。

BLUR: string = "blur"

Defines the value of the type property of a blur event object.

定义 blur 事件对象的 type 属性值。

CHANGE: string = "changed"

Same as Event.CHANGED.

Event.CHANGED

CHANGED: string = "changed"

Defines the value of the type property of a change event object.

定义 change 事件对象的 type 属性值。

CLICK: string = "click"

Defines the value of the type property of a click event object, triggered when a mouse click completes on a display object.

定义 click 事件对象的 type 属性值,用于鼠标点击对象后触发。

CLOSE: string = "close"

Defines the value of the type property of a close event object.

定义 close 事件对象的 type 属性值。

COLLISION_ENTER: string = "collisionenter"

3DPhysical collision start.

3D物理碰撞开始。

COLLISION_EXIT: string = "collisionexit"

3DPhysical collision end.

3D物理碰撞结束。

COLLISION_STAY: string = "collisionstay"

3DPhysical collision continues.

3D物理碰撞持续。

COMPLETE: string = "complete"

Defines the value of the type property of a complete event object.

定义 complete 事件对象的 type 属性值。

DEVICE_LOST: string = "devicelost"

Triggered when the GPU device is lost.

显卡设备丢失时触发

DISPLAY: string = "display"

Defines the value of the type property of a display event object.

定义 display 事件对象的 type 属性值。

DOUBLE_CLICK: string = "doubleclick"

Defines the value of the type property of a doubleclick event object.

定义 doubleclick 事件对象的 type 属性值。

DRAG_END: string = "dragend"

Defines the value of the type property of a dragend event object, triggered when drag end.

定义 dragend 事件对象的 type 属性值,用于拖动结束后触发。

DRAG_MOVE: string = "dragmove"

Defines the value of the type property of a dragmove event object, triggered when dragging.

定义 dragmove 事件对象的 type 属性值,用于拖动中触发。

DRAG_START: string = "dragstart"

Defines the value of the type property of a dragstart event object, triggered when drag start.

定义 dragstart 事件对象的 type 属性值,用于开始拖动后触发。

DROP: string = "drop"

Defines the value of the type property of a drop event object, triggered when drop occured.

定义 drop 事件对象的 type 属性值,用于拖动放置后触发。

EMPTY: Readonly<Event> = ...

An empty Event object. Used for event dispatch transfer.

一个空的 Event 对象。用于事件派发中转使用。

END: string = "end"

Defines the value of the type property of an end event object.

定义 end 事件对象的 type 属性值。

ENTER: string = "enter"

Defines the value of the type property of an enter event object.

定义 enter 事件对象的 type 属性值。

ERROR: string = "error"

Defines the value of the type property of an error event object.

定义 error 事件对象的 type 属性值。

FOCUS: string = "focus"

Defines the value of the type property of a focus event object.

定义 focus 事件对象的 type 属性值。

FOCUS_CHANGE: string = "focuschange"

Defines the value of the type property of a focuschange event object.

定义 focuschange 事件对象的 type 属性值。

FRAME: string = "enterframe"

Defines the value of the type property of a enterframe event object.

定义 enterframe 事件对象的 type 属性值。

FULL_SCREEN_CHANGE: string = "fullscreenchange"

Triggered when the full screen state changes in the browser.

浏览器全屏更改时触发

INPUT: string = "input"

Defines the value of the type property of an input event object.

定义 input 事件对象的 type 属性值。

JOINT_BREAK: string = "jointbreak"

Joint destruction.

关节破坏。

KEY_DOWN: string = "keydown"

Defines the value of the type property of a keydown event object.

定义 keydown 事件对象的 type 属性值。

KEY_PRESS: string = "keypress"

Defines the value of the type property of a keypress event object.

定义 keypress 事件对象的 type 属性值。

KEY_UP: string = "keyup"

Defines the value of the type property of a keyup event object.

定义 keyup 事件对象的 type 属性值。

LABEL: string = "label"

Defines the value of the type property of a label event object.

定义 label 事件对象的 type 属性值。

LAYER_CHANGE: string = "layerChange"

Triggered when a 3D layer changes.

3D layer改变时触发。

LINK: string = "link"

Defines the value of the type property of a link event object.

定义 link 事件对象的 type 属性值。

LOADED: string = "loaded"

Defines the value of the type property of a loaded event object.

定义 loaded 事件对象的 type 属性值。

MESSAGE: string = "message"

Defines the value of the type property of a message event object.

定义 message 事件对象的 type 属性值。

MOUSE_DOWN: string = "mousedown"

Defines the value of the type property of a mousedown event object, triggered when pressed on a display object.

定义 mousedown 事件对象的 type 属性值,用于在显示对象上按下后触发。

MOUSE_DRAG: string = "mousedrag"

Defines the value of the type property of a mousedrag event object.

定义 mousedrag 事件对象的 type 属性值。

MOUSE_DRAG_END: string = "mousedragend"

Defines the value of the type property of a mousedragend event object.

定义 mousedragend 事件对象的 type 属性值。

MOUSE_MOVE: string = "mousemove"

Defines the value of the type property of a mousemove event object, triggered when mouse moves over a display object.

定义 mousemove 事件对象的 type 属性值,用于鼠标在对象身上进行移动后触发。

MOUSE_OUT: string = "mouseout"

Defines the value of the type property of a mouseout event object.

定义 mouseout 事件对象的 type 属性值。

MOUSE_OVER: string = "mouseover"

Defines the value of the type property of a mouseover event object.

定义 mouseover 事件对象的 type 属性值。

MOUSE_UP: string = "mouseup"

Defines the value of the type property of a mouseup event object, triggered when released on a display object.

定义 mouseup 事件对象的 type 属性值,用于在显示对象抬起后触发。

MOUSE_WHEEL: string = "mousewheel"

Defines the value of the type property of a mousewheel event object.

定义 mousewheel 事件对象的 type 属性值。

MOVED: string = "moved"

Defines the value of the type property of a moved event object.

定义 moved 事件对象的 type 属性值。

OPEN: string = "open"

Defines the value of the type property of an open event object.

定义 open 事件对象的 type 属性值。

PAUSED: string = "paused"

Defines the value of the type property of a paused event object.

定义 paused 事件对象的 type 属性值。

PLAYED: string = "played"

Defines the value of the type property of a played event object.

定义 played 事件对象的 type 属性值。

PROGRESS: string = "progress"

Defines the value of the type property of a progress event object.

定义 progress 事件对象的 type 属性值。

READY: string = "ready"

Defines the value of the type property of a ready event object.

定义 ready 事件对象的 type 属性值。

REMOVED: string = "removed"

Defines the value of the type property of a removed event object.

定义 removed 事件对象的 type 属性值。

RENDER: string = "render"

Defines the value of the type property of a render event object.

定义 render 事件对象的 type 属性值。

RESIZE: string = "resize"

Defines the value of the type property of a resize event object.

定义 resize 事件对象的 type 属性值。

RIGHT_CLICK: string = "rightclick"

Defines the value of the type property of a rightclick event object.

定义 rightclick 事件对象的 type 属性值。

RIGHT_MOUSE_DOWN: string = "rightmousedown"

Defines the value of the type property of a rightmousedown event object.

定义 rightmousedown 事件对象的 type 属性值。

RIGHT_MOUSE_UP: string = "rightmouseup"

Defines the value of the type property of a rightmouseup event object.

定义 rightmouseup 事件对象的 type 属性值。

ROLL_OUT: string = "mouseout"

Defines the value of the type property of a mouseout event object, triggered when mouse leaves a display object.

定义 mouseout 事件对象的 type 属性值,用于鼠标离开对象后触发。

ROLL_OVER: string = "mouseover"

Defines the value of the type property of a mouseover event object.

定义 mouseover 事件对象的 type 属性值。

SELECT: string = "select"

Defines the value of the type property of a select event object.

定义 select 事件对象的 type 属性值。

START: string = "start"

Defines the value of the type property of a start event object.

定义 start 事件对象的 type 属性值。

STATIC_MASK: string = "staticMask"

Triggered when 3D Static changes.

3D Static改变时触发。

STOPPED: string = "stopped"

Defines the value of the type property of a stopped event object.

定义 stopped 事件对象的 type 属性值。

TRANSFORM_CHANGED: string = "transformchanged"

Triggered when the world matrix is updated.

世界矩阵更新时触发。

TRIGGER_ENTER: string = "triggerenter"

For 2D physics collision or 3D physics trigger start.

2D物理碰撞或3D物理触发开始。

TRIGGER_EXIT: string = "triggerexit"

For 2D physics collision or 3D physics trigger end.

2D物理碰撞或3D物理触发结束。

TRIGGER_STAY: string = "triggerstay"

For 2D physics collision or 3D physics trigger continues.

2D物理碰撞或3D物理触发持续。

UNDISPLAY: string = "undisplay"

Defines the value of the type property of an undisplay event object.

定义 undisplay 事件对象的 type 属性值。

UPDATE_PHY_EVENT_FILTER: string = "physics3dEventFilter"

激活物理3D事件过滤器。

Activate the physics 3D event filter.

VISIBILITY_CHANGE: string = "visibilitychange"

Defines the value of the type property of a visibilitychange event object.

定义 visibilitychange 事件对象的 type 属性值。

WILL_RESIZE: string = "willResize"

Defines the value of the type property of a willResize event object.

定义 willResize 事件对象的 type 属性值。

访问器

  • get altKey(): boolean

    返回 boolean

    Indicates whether the Alt key is active (true) or inactive (false).

    表示 Alt 键是处于活动状态 (true) 还是非活动状态 (false)。

  • get charCode(): string

    返回 string

    Contains the character code value of the key pressed or released. The character code value is for English keyboard.

    包含按下或释放的键的字符代码值。字符代码值为英文键盘值。

  • get ctrlKey(): boolean

    返回 boolean

    Indicates whether the Ctrl key is active (true) or inactive (false).

    表示 Ctrl 键是处于活动状态 (true) 还是非活动状态 (false)。

  • get keyLocation(): number

    返回 number

    Indicates the location of the key on the keyboard. This is useful for differentiating keys that appear more than once on the keyboard. For example, you can use this property to distinguish between the left and right Shift keys: the value of KeyLocation.LEFT for the left Shift key and the value of KeyLocation.RIGHT for the right Shift key. Another example is distinguishing between a key pressed on the standard keyboard (KeyLocation.STANDARD) and the same key pressed on the numeric keypad (KeyLocation.NUM_PAD).

    表示键在键盘上的位置。这对于区分在键盘上多次出现的键非常有用。 例如,您可以根据此属性的值来区分左 Shift 键和右 Shift 键:左 Shift 键的值为 KeyLocation.LEFT,右 Shift 键的值为 KeyLocation.RIGHT。另一个示例是区分标准键盘 (KeyLocation.STANDARD) 与数字键盘 (KeyLocation.NUM_PAD) 上按下的数字键。

  • get metaKey(): boolean

    返回 boolean

    Indicates whether the Meta key is active (true) or inactive (false). It is Command key on the Mac, and the Windows key on Windows.

    表示 Meta 键是处于活动状态 (true) 还是非活动状态 (false)。在 Mac 上是 Command 键,在 Windows 上是 Windows 键。

  • get shiftKey(): boolean

    返回 boolean

    Indicates whether the Shift key is active (true) or inactive (false).

    表示 Shift 键是处于活动状态 (true) 还是非活动状态 (false)。

方法

  • 参数

    • type: string

      The type of the event.

    • currentTarget: any

      The triggering object of the event.

    • target: any

      The current propagation object of the event.

    返回 Event

    The current Event object.

    Sets the event data.

    设置事件数据。

  • 返回 void

    Prevents processing of all event listeners on the current node in the event flow after the current one. This method does not affect any event listeners on the current node (currentTarget).

    阻止对事件流中当前节点的后续节点中的所有事件侦听器进行处理。此方法不会影响当前节点 (currentTarget) 中的任何事件侦听器。

  • 参数

    • type: string

      The type of the event.

    返回 boolean

    True if the specified event type is a mouse event; otherwise, false.

    Checks whether the specified event type is a mouse event.

    检测指定事件类型是否是鼠标事件。