Articles tagged: touch
Found 42 documents
- Games/Techniques/Control_mechanisms One of HTML5's main advantages as a game development platform is the ability to run on various ...
- Games/Techniques/Control_mechanisms/Mobile_touch That covers adding touch controls for mobile; in the next article we'll see how to add keyboard ...
- Web/API/Document/createTouch This method creates and returns a new Touch object.
- Web/API/Document/createTouchList This method creates and returns a new TouchList object.
- Web/API/DocumentTouch The DocumentTouch interface used to provide convenience methods for creating Touch and TouchList ...
- Web/API/Pointer_events/Multi-touch_interaction Pointer events extend DOM input events to support various pointing input devices such as ...
- Web/API/Pointer_events/Pinch_zoom_gestures Adding gestures to an application can significantly improve the user experience. There are many ...
- Web/API/Pointer_events/Using_Pointer_Events This document demonstrates how to use pointer events and canvas to build a multi-touch enabled ...
- Web/API/Touch/clientX The Touch.clientX read-only property returns the X coordinate of the touch point relative to the ...
- Web/API/Touch/clientY The Touch.clientY read-only property returns the Y coordinate of the touch point relative to the ...
- Web/API/Touch/force The Touch.force read-only property returns the amount of pressure the user is applying to the ...
- Web/API/Touch/identifier The Touch.identifier returns a value uniquely identifying this point of contact with the touch ...
- Web/API/Touch/pageX The Touch.pageX read-only property returns the X coordinate of the touch point relative to the ...
- Web/API/Touch/pageY The Touch.pageY read-only property returns the Y coordinate of the touch point relative to the ...
- Web/API/Touch/radiusX Returns the X radius of the ellipse that most closely circumscribes the area of contact with the ...
- Web/API/Touch/radiusY Returns the Y radius of the ellipse that most closely circumscribes the area of contact with the ...
- Web/API/Touch/rotationAngle Returns the rotation angle, in degrees, of the contact area ellipse defined by Touch.radiusX and ...
- Web/API/Touch/screenX Returns the X coordinate of the touch point relative to the screen, not including any scroll offset.
- Web/API/Touch/screenY Returns the Y coordinate of the touch point relative to the screen, not including any scroll offset.
- Web/API/Touch/target Returns the Element (EventTarget) on which the touch contact started when it was first placed on ...
- Web/API/Touch/Touch The Touch() constructor creates a new Touch object.
- Web/API/TouchEvent The TouchEvent interface represents an event sent when the state of contacts with a ...
- Web/API/TouchEvent/altKey A Boolean value indicating whether or not the alt (Alternate) key is enabled when the touch ...
- Web/API/TouchEvent/changedTouches A TouchList whose touch points (Touch objects) varies depending on the event type, as follows:
- Web/API/TouchEvent/ctrlKey A Boolean value indicating whether the control (Control) key is enabled when the touch event is ...
- Web/API/TouchEvent/metaKey A Boolean value indicating whether or not the Meta key is enabled when the touch event is ...
- Web/API/TouchEvent/shiftKey A Boolean value indicating whether or not the shift key is enabled when the touch event is ...
- Web/API/TouchEvent/targetTouches A TouchList listing all the Touch objects for touch points that are still in contact with the ...
- Web/API/TouchEvent/touches A TouchList listing all the Touch objects for touch points that are currently in contact with ...
- Web/API/TouchEvent/TouchEvent The Touch Event() constructor creates a new TouchEvent.
- Web/API/TouchList The TouchList interface represents a list of contact points with a touch surface; for example, ...
- Web/API/TouchList/identifiedTouch The identifiedTouch method returns the first Touch item in the TouchList matching the specified ...
- Web/API/TouchList/item Returns the Touch object at the specified index in the TouchList.
- Web/API/TouchList/length This read-only property indicates the number of items (touch points) in a TouchList.
- Web/API/Touch_events/Multi-touch_interaction The touch event interfaces support application-specific single and multi-touch interactions. ...
- Web/API/Touch_events/Supporting_both_TouchEvent_and_MouseEvent The touch interfaces enable applications to create enhanced user experiences on touch enabled ...
- Web/API/Touch_events/Using_Touch_Events Today, most Web content is designed for keyboard and mouse input. However, devices with touch ...
- Web/Apps/Fundamentals/User_input_methods Modern web user input goes beyond simple mouse and keyboard: think of touchscreens for example. ...
- Web/Events/touchcancel The touchcancel event is fired when a touch point has been disrupted in an ...
- Web/Events/touchend The touchend event is fired when a touch point is removed from the touch surface.
- Web/Events/touchmove The touchmove event is fired when a touch point is moved along the touch surface.
- Web/Events/touchstart The touchstart event is fired when a touch point is placed on the touch surface.