package js_of_ocaml-lwt

  1. Overview
  2. Docs

Module Js_of_ocaml_lwt.Lwt_js_eventsSource

Programming mouse or keyboard events handlers using Lwt

Reminder: Event capturing starts with the outer most element in the DOM and works inwards to the HTML element the event took place on (capture phase) and then out again (bubbling phase).

Examples of use:

Waiting for a click on elt1 before continuing:

let%lwt _ = Lwt_js_events.click elt1 in

Doing some operation for each value change in input element inp:

Lwt_js_events.(async (fun () ->
   clicks inp1 (fun ev _ -> ...)
))

Defining a thread that waits for ESC key on an element:

let rec esc elt =
   let%lwt ev = keydown elt in
   if ev##.keyCode = 27
   then Lwt.return ev
   else esc elt

Waiting for a click or escape key before continuing:

let%lwt () =
    Lwt.pick [(let%lwt _ = esc Dom_html.document in Lwt.return ());
              (let%lwt _ = click Dom_html.document in Lwt.return ())]
  in ...

Create Lwt threads for events

make_event ev target creates a Lwt thread that waits for the event ev to happen on target (once). This thread isa cancellable using Lwt.cancel. If you set the optional parameter ~use_capture:true, the event will be caught during the capture phase, otherwise it is caught during the bubbling phase (default). If you set the optional parameter ~passive:true, the user agent will ignore preventDefault calls inside the event callback.

Sourceval seq_loop : (?use_capture:bool -> ?passive:bool -> 'target -> 'event Lwt.t) -> ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> 'target -> ('event -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t

seq_loop (make_event ev) target handler creates a looping Lwt thread that waits for the event ev to happen on target, then execute handler, and start again waiting for the event. Events happening during the execution of the handler are ignored. See async_loop and buffered_loop for alternative semantics.

For example, the clicks function below is defined by:

let clicks ?use_capture ?passive t = seq_loop click ?use_capture ?passive t

The thread returned is cancellable using Lwt.cancel. In order for the loop thread to be canceled from within the handler, the latter receives the former as its second parameter.

By default, cancelling the loop will not cancel the potential currently running handler. This behaviour can be changed by setting the cancel_handler parameter to true.

Sourceval async_loop : (?use_capture:bool -> ?passive:bool -> 'target -> 'event Lwt.t) -> ?use_capture:bool -> ?passive:bool -> 'target -> ('event -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t

async_loop is similar to seq_loop, but each handler runs independently. No event is thus missed, but since several instances of the handler can be run concurrently, it is up to the programmer to ensure that they interact correctly.

Cancelling the loop will not cancel the potential currently running handlers.

Sourceval buffered_loop : (?use_capture:bool -> ?passive:bool -> 'target -> 'event Lwt.t) -> ?cancel_handler:bool -> ?cancel_queue:bool -> ?use_capture:bool -> ?passive:bool -> 'target -> ('event -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t

buffered_loop is similar to seq_loop, but any event that occurs during an execution of the handler is queued instead of being ignored.

No event is thus missed, but there can be a non predictable delay between its trigger and its treatment. It is thus a good idea to use this loop with handlers whose running time is short, so the memorized event still makes sense when the handler is eventually executed. It is also up to the programmer to ensure that event handlers terminate so the queue will eventually be emptied.

By default, cancelling the loop will not cancel the (potential) currently running handler, but any other queued event will be dropped. This behaviour can be customized using the two optional parameters cancel_handler and cancel_queue.

Sourceval async : (unit -> unit Lwt.t) -> unit

async t records a thread to be executed later. It is implemented by calling yield, then Lwt.async. This is useful if you want to create a new event listener when you are inside an event handler. This avoids the current event to be caught by the new event handler (if it propagates).

Sourceval func_limited_loop : (?use_capture:bool -> ?passive:bool -> 'a -> 'b Lwt.t) -> (unit -> 'a Lwt.t) -> ?use_capture:bool -> ?passive:bool -> 'a -> ('b -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t

func_limited_loop event delay_fun target handler will behave like Lwt_js_events.async_loop event target handler but it will run delay_fun first, and execute handler only when delay_fun is finished and no other event occurred in the meantime.

This allows to limit the number of events caught.

Be careful, it is an asynchrone loop, so if you give too little time, several instances of your handler could be run in same time *

Sourceval limited_loop : (?use_capture:bool -> ?passive:bool -> 'a -> 'b Lwt.t) -> ?elapsed_time:float -> ?use_capture:bool -> ?passive:bool -> 'a -> ('b -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t

Same as func_limited_loop but take time instead of function By default elapsed_time = 0.1s = 100ms *

Predefined functions for some types of events

Sourceval mousewheel : ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t * (int * int)) Lwt.t

This function returns the event, together with the numbers of ticks the mouse wheel moved. Positive means down or right. This interface is compatible with all (recent) browsers.

Returns when a CSS transition terminates on the element.

Sourceval clicks : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval copies : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.clipboardEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval cuts : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.clipboardEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval pastes : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.clipboardEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval dblclicks : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval mousedowns : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval mouseups : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval mouseovers : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval mousemoves : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval mouseouts : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval keypresses : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.keyboardEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval keydowns : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.keyboardEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval keyups : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.keyboardEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval inputs : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval timeupdates : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval changes : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval dragstarts : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.dragEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval dragends : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.dragEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval dragenters : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.dragEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval dragovers : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.dragEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval dragleaves : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.dragEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval drags : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.dragEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval drops : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.dragEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval mousewheels : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> ((Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t * (int * int)) -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval wheels : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.mousewheelEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval touchstarts : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.touchEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval touchmoves : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.touchEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval touchends : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.touchEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval touchcancels : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.touchEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval focuses : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.focusEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval blurs : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.focusEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval scrolls : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval submits : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.submitEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval selects : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval loads : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.imageElement Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval errors : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.imageElement Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval aborts : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.imageElement Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval canplays : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval canplaythroughs : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval durationchanges : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval emptieds : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval endeds : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval loadeddatas : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval loadedmetadatas : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval loadstarts : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval pauses : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval plays : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval playings : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval ratechanges : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval seekeds : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval seekings : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval stalleds : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval suspends : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval volumechanges : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval waitings : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval lostpointercaptures : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.pointerEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval gotpointercaptures : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.pointerEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval pointerenters : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.pointerEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval pointercancels : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.pointerEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval pointerdowns : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.pointerEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval pointerleaves : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.pointerEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval pointermoves : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.pointerEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval pointerouts : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.pointerEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval pointerovers : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.pointerEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval pointerups : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.pointerEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval transitionends : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.transitionEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval transitionstarts : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.transitionEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval transitionruns : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.transitionEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval transitioncancels : ?cancel_handler:bool -> ?use_capture:bool -> ?passive:bool -> Js_of_ocaml.Dom_html.eventTarget Js_of_ocaml.Js.t -> (Js_of_ocaml.Dom_html.transitionEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval request_animation_frame : unit -> unit Lwt.t

Returns when a repaint of the window by the browser starts. (see JS method window.requestAnimationFrame)

Returns when the page is loaded

Sourceval domContentLoaded : unit -> unit Lwt.t
Sourceval onorientationchange : unit -> Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t Lwt.t
Sourceval onorientationchange_or_onresize : unit -> Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t Lwt.t
Sourceval onresizes : (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval onorientationchanges : (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval onpopstates : (Js_of_ocaml.Dom_html.popStateEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval onhashchanges : (Js_of_ocaml.Dom_html.hashChangeEvent Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval onorientationchanges_or_onresizes : (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval limited_onresizes : ?elapsed_time:float -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval limited_onorientationchanges : ?elapsed_time:float -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
Sourceval limited_onorientationchanges_or_onresizes : ?elapsed_time:float -> (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit Lwt.t -> unit Lwt.t) -> unit Lwt.t
OCaml

Innovation. Community. Security.