Search completed in 1.60 seconds.
10 results for "ontouchmove":
GlobalEventHandlers.ontouchmove - Web APIs
WebAPIGlobalEventHandlersontouchmove
syntax var movehandler = someelement.ontouchmove; return value movehandler the touchmove event handler for element someelement.
... example this example shows two ways to use ontouchmove to set an element's touchmove event handler.
... <html> <head> <script> function movetouch(ev) { // process the event } function init() { var el=document.getelementbyid("target1"); el.ontouchmove = movetouch; } </script> </head> <body onload="init();"> <div id="target1"> touch me ...
... </div> <div id="target2" ontouchmove="movetouch(event)"> touch me ...
Document - Web APIs
WebAPIDocument
globaleventhandlers.ontouchmove is an eventhandler representing the code to be called when the touchmove event is raised.
... also available via the ontouchmove property touchstart fired when one or more touch points are placed on the touch surface.
TouchEvent - Web APIs
WebAPITouchEvent
globaleventhandlers.ontouchmove a global event handler for the touchmove event.
... draft added ontouchstart, ontouchend, ontouchmove, ontouchend global attribute handlers touch eventsthe definition of 'touchevent' in that specification.
Document: touchmove event - Web APIs
WebAPIDocumenttouchmove event
bubbles yes cancelable yes interface touchevent event handler property ontouchmove examples code samples for those events are available on the dedicated page: touch events.
Element: touchmove event - Web APIs
WebAPIElementtouchmove event
bubbles yes cancelable yes interface touchevent event handler property ontouchmove examples code samples for those events are available on the dedicated page: touch events.
Element - Web APIs
WebAPIElement
also available via the ontouchmove property touchstart fired when one or more touch points are placed on the touch surface.
GlobalEventHandlers - Web APIs
WebAPIGlobalEventHandlers
globaleventhandlers.ontouchmove is an eventhandler representing the code to be called when the touchmove event is raised.
HTMLElement - Web APIs
WebAPIHTMLElement
toucheventhandlers.ontouchmove returns the event handling code for the touchmove event.
Index - Web APIs
WebAPIIndex
1545 globaleventhandlers.ontouchmove api, experimental, html dom, reference a global event handler for the touchmove event.
Multi-touch interaction - Web APIs
WebAPITouch eventsMulti-touch interaction
function set_handlers(name) { // install event handlers for the given element var el=document.getelementbyid(name); el.ontouchstart = start_handler; el.ontouchmove = move_handler; // use same handler for touchcancel and touchend el.ontouchcancel = end_handler; el.ontouchend = end_handler; } function init() { set_handlers("target1"); set_handlers("target2"); set_handlers("target3"); set_handlers("target4"); } move/pinch/zoom handler this function provides very basic support for 2-touch horizontal move/pinch/zoom handling.