-
Notifications
You must be signed in to change notification settings - Fork 0
@ralphschuler.webgl shader factory.<internal>.WheelEvent
@ralphschuler/webgl-shader-factory.<internal>.WheelEvent
Events that occur due to the user moving a mouse wheel or similar input device.
-
↳
WheelEvent
- AT_TARGET
- BUBBLING_PHASE
- CAPTURING_PHASE
- DOM_DELTA_LINE
- DOM_DELTA_PAGE
- DOM_DELTA_PIXEL
- NONE
- altKey
- bubbles
- button
- buttons
- cancelBubble
- cancelable
- clientX
- clientY
- composed
- ctrlKey
- currentTarget
- defaultPrevented
- deltaMode
- deltaX
- deltaY
- deltaZ
- detail
- eventPhase
- isTrusted
- metaKey
- movementX
- movementY
- offsetX
- offsetY
- pageX
- pageY
- relatedTarget
- returnValue
- screenX
- screenY
- shiftKey
- srcElement
- target
- timeStamp
- type
- view
- which
- x
- y
- composedPath
- getModifierState
- initEvent
- initMouseEvent
- initUIEvent
- preventDefault
- stopImmediatePropagation
- stopPropagation
• Readonly
AT_TARGET: 2
MouseEvent.AT_TARGET
node_modules/typescript/lib/lib.dom.d.ts:8100
• Readonly
BUBBLING_PHASE: 3
MouseEvent.BUBBLING_PHASE
node_modules/typescript/lib/lib.dom.d.ts:8101
• Readonly
CAPTURING_PHASE: 1
MouseEvent.CAPTURING_PHASE
node_modules/typescript/lib/lib.dom.d.ts:8099
• Readonly
DOM_DELTA_LINE: 1
node_modules/typescript/lib/lib.dom.d.ts:25547
• Readonly
DOM_DELTA_PAGE: 2
node_modules/typescript/lib/lib.dom.d.ts:25548
• Readonly
DOM_DELTA_PIXEL: 0
node_modules/typescript/lib/lib.dom.d.ts:25546
• Readonly
NONE: 0
MouseEvent.NONE
node_modules/typescript/lib/lib.dom.d.ts:8098
• Readonly
altKey: boolean
MouseEvent.altKey
node_modules/typescript/lib/lib.dom.d.ts:15589
• Readonly
bubbles: boolean
Returns true or false depending on how event was initialized. True if event goes through its target's ancestors in reverse tree order, and false otherwise.
MouseEvent.bubbles
node_modules/typescript/lib/lib.dom.d.ts:7995
• Readonly
button: number
MouseEvent.button
node_modules/typescript/lib/lib.dom.d.ts:15591
• Readonly
buttons: number
MouseEvent.buttons
node_modules/typescript/lib/lib.dom.d.ts:15593
• cancelBubble: boolean
Deprecated
MouseEvent.cancelBubble
node_modules/typescript/lib/lib.dom.d.ts:8001
• Readonly
cancelable: boolean
Returns true or false depending on how event was initialized. Its return value does not always carry meaning, but true can indicate that part of the operation during which event was dispatched, can be canceled by invoking the preventDefault() method.
MouseEvent.cancelable
node_modules/typescript/lib/lib.dom.d.ts:8007
• Readonly
clientX: number
MouseEvent.clientX
node_modules/typescript/lib/lib.dom.d.ts:15595
• Readonly
clientY: number
MouseEvent.clientY
node_modules/typescript/lib/lib.dom.d.ts:15597
• Readonly
composed: boolean
Returns true or false depending on how event was initialized. True if event invokes listeners past a ShadowRoot node that is the root of its target, and false otherwise.
MouseEvent.composed
node_modules/typescript/lib/lib.dom.d.ts:8013
• Readonly
ctrlKey: boolean
MouseEvent.ctrlKey
node_modules/typescript/lib/lib.dom.d.ts:15599
• Readonly
currentTarget: null
| EventTarget
Returns the object whose event listener's callback is currently being invoked.
MouseEvent.currentTarget
node_modules/typescript/lib/lib.dom.d.ts:8019
• Readonly
defaultPrevented: boolean
Returns true if preventDefault() was invoked successfully to indicate cancelation, and false otherwise.
MouseEvent.defaultPrevented
node_modules/typescript/lib/lib.dom.d.ts:8025
• Readonly
deltaMode: number
node_modules/typescript/lib/lib.dom.d.ts:25539
• Readonly
deltaX: number
node_modules/typescript/lib/lib.dom.d.ts:25541
• Readonly
deltaY: number
node_modules/typescript/lib/lib.dom.d.ts:25543
• Readonly
deltaZ: number
node_modules/typescript/lib/lib.dom.d.ts:25545
• Readonly
detail: number
MouseEvent.detail
node_modules/typescript/lib/lib.dom.d.ts:22505
• Readonly
eventPhase: number
Returns the event's phase, which is one of NONE, CAPTURING_PHASE, AT_TARGET, and BUBBLING_PHASE.
MouseEvent.eventPhase
node_modules/typescript/lib/lib.dom.d.ts:8031
• Readonly
isTrusted: boolean
Returns true if event was dispatched by the user agent, and false otherwise.
MouseEvent.isTrusted
node_modules/typescript/lib/lib.dom.d.ts:8037
• Readonly
metaKey: boolean
MouseEvent.metaKey
node_modules/typescript/lib/lib.dom.d.ts:15601
• Readonly
movementX: number
MouseEvent.movementX
node_modules/typescript/lib/lib.dom.d.ts:15603
• Readonly
movementY: number
MouseEvent.movementY
node_modules/typescript/lib/lib.dom.d.ts:15605
• Readonly
offsetX: number
MouseEvent.offsetX
node_modules/typescript/lib/lib.dom.d.ts:15607
• Readonly
offsetY: number
MouseEvent.offsetY
node_modules/typescript/lib/lib.dom.d.ts:15609
• Readonly
pageX: number
MouseEvent.pageX
node_modules/typescript/lib/lib.dom.d.ts:15611
• Readonly
pageY: number
MouseEvent.pageY
node_modules/typescript/lib/lib.dom.d.ts:15613
• Readonly
relatedTarget: null
| EventTarget
MouseEvent.relatedTarget
node_modules/typescript/lib/lib.dom.d.ts:15615
• returnValue: boolean
Deprecated
MouseEvent.returnValue
node_modules/typescript/lib/lib.dom.d.ts:8043
• Readonly
screenX: number
MouseEvent.screenX
node_modules/typescript/lib/lib.dom.d.ts:15617
• Readonly
screenY: number
MouseEvent.screenY
node_modules/typescript/lib/lib.dom.d.ts:15619
• Readonly
shiftKey: boolean
MouseEvent.shiftKey
node_modules/typescript/lib/lib.dom.d.ts:15621
• Readonly
srcElement: null
| EventTarget
Deprecated
MouseEvent.srcElement
node_modules/typescript/lib/lib.dom.d.ts:8049
• Readonly
target: null
| EventTarget
Returns the object to which event is dispatched (its target).
MouseEvent.target
node_modules/typescript/lib/lib.dom.d.ts:8055
• Readonly
timeStamp: number
Returns the event's timestamp as the number of milliseconds measured relative to the time origin.
MouseEvent.timeStamp
node_modules/typescript/lib/lib.dom.d.ts:8061
• Readonly
type: string
Returns the type of event, e.g. "click", "hashchange", or "submit".
MouseEvent.type
node_modules/typescript/lib/lib.dom.d.ts:8067
• Readonly
view: null
| Window
MouseEvent.view
node_modules/typescript/lib/lib.dom.d.ts:22507
• Readonly
which: number
Deprecated
MouseEvent.which
node_modules/typescript/lib/lib.dom.d.ts:22513
• Readonly
x: number
MouseEvent.x
node_modules/typescript/lib/lib.dom.d.ts:15623
• Readonly
y: number
MouseEvent.y
node_modules/typescript/lib/lib.dom.d.ts:15625
▸ composedPath(): EventTarget
[]
Returns the invocation target objects of event's path (objects on which listeners will be invoked), except for any nodes in shadow trees of which the shadow root's mode is "closed" that are not reachable from event's currentTarget.
EventTarget
[]
MouseEvent.composedPath
node_modules/typescript/lib/lib.dom.d.ts:8073
▸ getModifierState(keyArg
): boolean
Name | Type |
---|---|
keyArg |
string |
boolean
MouseEvent.getModifierState
node_modules/typescript/lib/lib.dom.d.ts:15627
▸ initEvent(type
, bubbles?
, cancelable?
): void
Name | Type |
---|---|
type |
string |
bubbles? |
boolean |
cancelable? |
boolean |
void
Deprecated
MouseEvent.initEvent
node_modules/typescript/lib/lib.dom.d.ts:8079
▸ initMouseEvent(typeArg
, canBubbleArg
, cancelableArg
, viewArg
, detailArg
, screenXArg
, screenYArg
, clientXArg
, clientYArg
, ctrlKeyArg
, altKeyArg
, shiftKeyArg
, metaKeyArg
, buttonArg
, relatedTargetArg
): void
Name | Type |
---|---|
typeArg |
string |
canBubbleArg |
boolean |
cancelableArg |
boolean |
viewArg |
Window |
detailArg |
number |
screenXArg |
number |
screenYArg |
number |
clientXArg |
number |
clientYArg |
number |
ctrlKeyArg |
boolean |
altKeyArg |
boolean |
shiftKeyArg |
boolean |
metaKeyArg |
boolean |
buttonArg |
number |
relatedTargetArg |
null | EventTarget
|
void
Deprecated
MouseEvent.initMouseEvent
node_modules/typescript/lib/lib.dom.d.ts:15633
▸ initUIEvent(typeArg
, bubblesArg?
, cancelableArg?
, viewArg?
, detailArg?
): void
Name | Type |
---|---|
typeArg |
string |
bubblesArg? |
boolean |
cancelableArg? |
boolean |
viewArg? |
null | Window
|
detailArg? |
number |
void
Deprecated
MouseEvent.initUIEvent
node_modules/typescript/lib/lib.dom.d.ts:22519
▸ preventDefault(): void
If invoked when the cancelable attribute value is true, and while executing a listener for the event with passive set to false, signals to the operation that caused event to be dispatched that it needs to be canceled.
void
MouseEvent.preventDefault
node_modules/typescript/lib/lib.dom.d.ts:8085
▸ stopImmediatePropagation(): void
Invoking this method prevents event from reaching any registered event listeners after the current one finishes running and, when dispatched in a tree, also prevents event from reaching any other objects.
void
MouseEvent.stopImmediatePropagation
node_modules/typescript/lib/lib.dom.d.ts:8091
▸ stopPropagation(): void
When dispatched in a tree, invoking this method prevents event from reaching any objects other than the current object.
void
MouseEvent.stopPropagation
node_modules/typescript/lib/lib.dom.d.ts:8097
- @ralphschuler/ai-function-caller
- index
- types/AIFunction
- types/Message
- @ralphschuler/assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- error
- index
- util
- @ralphschuler/better-map
- @ralphschuler/better-set
- @ralphschuler/binary-serializer
- @ralphschuler/bit-mask
- @ralphschuler/complex-compare
- @ralphschuler/i811n
- @ralphschuler/logger
- Color
- ColorMap
- Logger
- animations/BallonAnimation
- animations/BaseAnimation
- animations/BombAnimation
- animations/BouncingBallAnimation
- animations/ClockAnimation
- animations/DotsAnimation
- animations/HorizontalBarAnimation
- animations/PongAnimation
- animations/ProgressAnimation
- animations/ProgressBarAnimation
- animations/SpinnerAnimation
- animations/VerticalBarAnimation
- enums/LogLevel
- index
- interfaces/IColor
- interfaces/IMessage
- types/ColorName
- types/Colors
- @ralphschuler/lsystem
- @ralphschuler/mixin-class-factory
- @ralphschuler/neuronal-network
- @ralphschuler/parser-combinator
- index
- inputTypes
- parser
- unicode
- @ralphschuler/prom-metrics-decorator
- @ralphschuler/prom-metrics-parser
- @ralphschuler/random
- PseudoRandomItemSelector
- PseudoRandomNumberGenerator
- Seed
- index
- strategies
- strategy
- strategy
- strategy
- strategy
- strategy
- strategy
- types
- type
- type
- type
- @ralphschuler/safe-array
- @ralphschuler/slot-mashine
- @ralphschuler/state-store
- StateStore
- index
- type
- type
- type
- type
- type
- type
- type
- type
- util
- @ralphschuler/stats-tracker
- @ralphschuler/ts-error
- error
- index
- type
- util
- util
- util
- util
- @ralphschuler/webgl-sand-engine
- index
- pixel-renderer
- @ralphschuler/webgl-shader-factory
- "node:stream/consumers"
- "node:stream/promises"
- ChatCompletionSnapshot
- Choice
- Message
- ToolCall
- EventEmitter
- FormData
- OpenAI
- OpenAI
- Audio
- Speech
- Transcriptions
- Translations
- Beta
- Assistants
- Assistant
- AssistantCreateParams
- AssistantUpdateParams
- Files
- Chat
- Threads
- Messages
- Files
- MessageContentImageFile
- MessageContentText
- Text
- FileCitation
- FilePath
- Runs
- RequiredActionFunctionToolCall
- Run
- RequiredAction
- RunCreateParams
- RunSubmitToolOutputsParams
- Steps
- CodeToolCall
- CodeInterpreter
- Image
- FunctionToolCall
- MessageCreationStepDetails
- RunStep
- ThreadCreateAndRunParams
- Thread
- ThreadCreateParams
- Chat
- Completions
- ChatCompletion
- ChatCompletionAssistantMessageParam
- ChatCompletionChunk
- Choice
- Delta
- ToolCall
- ChatCompletionContentPartImage
- ChatCompletionCreateParams
- ChatCompletionMessage
- ChatCompletionMessageToolCall
- ChatCompletionNamedToolChoice
- Completions
- CompletionChoice
- CompletionCreateParams
- Edits
- Edit
- Embeddings
- CreateEmbeddingResponse
- Files
- FineTunes
- FineTune
- FineTuneCreateParams
- FineTuneListEventsParams
- FineTuning
- Jobs
- FineTuningJob
- JobCreateParams
- Images
- Models
- Moderations
- Moderation
- internal
- finished
- pipeline
- "node:stream/consumers"
- "node:stream/promises"
- EventEmitter
- internal
- finished
- pipeline
- Counter
- Gauge
- Histogram
- Summary