Skip to main content

staticClick

import { EVENTS, StaticClickEvent } from "@egjs/view360";

// Typescript
const onStaticClick = (evt: StaticClickEvent) => {};

view360.on(EVENTS.STATIC_CLICK, onStaticClick);

An event that fires after clicking on canvas element without dragging.

Properties

isTouch: boolean

Whether the input was touch.

info

The following is a list of available events in the example:

  • "inputStart", "inputEnd", "staticClick"

Events Triggered