The MozRotateGestureStart event is executed when the user begins performing a rotate gesture, by placing two fingers on the trackpad and rotating them around the center of the trackpad. Firefox uses this gesture to move backward and forward through the tabs in the current window.
General info
- Specification
- Addons specific
- Interface
- Event
- Bubbles
- Yes
- Cancelable
- Yes
- Target
- browser, browsers
- Default Action
- Varies (OS dependant)
Properties
| Property | Type | Description | 
|---|---|---|
| targetRead only | EventTarget | The event target (the topmost target in the DOM tree). | 
| typeRead only | DOMString | The type of event. | 
| bubblesRead only | boolean | Does the event normally bubble? | 
| cancelableRead only | boolean | Is it possible to cancel the event? | 
| viewRead only | WindowProxy | document.defaultView(thewindowof the document). | 
| detailRead only | long(float) | 0. | 
| currentTargetRead only | EventTarget (DOM element) | The node that had the event listener attached. | 
| relatedTargetRead only | EventTarget (DOM element) | For mouseover,mouseout,mouseenterandmouseleaveevents: the target of the complementary event (themouseleavetarget in the case of amouseenterevent).nullotherwise. | 
| screenXRead only | long (int) | The X coordinate of the mouse pointer in global (screen) coordinates. | 
| screenYRead only | long (int) | The Y coordinate of the mouse pointer in global (screen) coordinates. | 
| clientXRead only | long (int) | The X coordinate of the mouse pointer in local (DOM content) coordinates. | 
| clientYRead only | long (int) | The Y coordinate of the mouse pointer in local (DOM content) coordinates. | 
| buttonRead only | unsigned short (int) | The button number that was pressed when the mouse event was fired: Left button=0, middle button=1 (if present), right button=2. For mice configured for left handed use in which the button actions are reversed the values are instead read from right to left. | 
| directionRead only | unsigned long (int) | The direction of the gesture. Read only. | 
| deltaRead only | double (float) | The amount by which the gesture moved; for rotation, this value is in degrees. Positive values are clockwise and negative values are counterclockwise. For magnification, this value is implementation-specific, but the value is positive for zooming in and negative for zooming out. |