Results 241 - 260 of 485

URLSearchParams

The URLSearchParams interface defines utility methods to work with the query string of a URL.
API Experimental Interface Reference URL API

WaveShaperNode

A WaveShaperNode always has exactly one input and one output.
API Interface Reference WaveShaperNode Web Audio API

WheelEvent

The WheelEvent interface represents events that occur due to the user moving a mouse wheel or similar input device.
API DOM Interface Reference Référence WheelEvent

WheelEvent()

The WheelEvent() constructor returns a newly created FocusEvent object.
Constructor DOM Interface Reference Référence WheelEvent

Window

The window object represents a window containing a DOM document; the document property points to the DOM document loaded in that window. A window for a given document can be obtained using the document.defaultView property.
API DOM Interface JavaScript Reference Window

WindowEventHandlers

WindowEventHandlers mixin describes the event handlers common to several interfaces like Window, or HTMLBodyElement and  HTMLFrameSetElement. Each of these interfaces can implement additional specific event handlers.
API HTML-DOM Interface Reference Référence

WorkerGlobalScope

The WorkerGlobalScope interface of the Web Workers API is an interface representing the scope of any worker. Workers have no browsing context; this scope contains the information usually conveyed by Window objects — in this case event handlers, the console or the associated WorkerNavigator object. Each WorkerGlobalScope has its own event loop.
API Interface NeedsBrowserCompatibility Reference WorkerGlobalScope Workers

XMLHttpRequest

XMLHttpRequest is an API that provides client functionality for transferring data between a client and a server. It provides an easy way to retrieve data from a URL without having to do a full page refresh. This enables a Web page to update just a part of the page without disrupting what the user is doing.  XMLHttpRequest is used heavily in AJAX programming.
AJAX API HTTP Interface Reference Web XHR

ArrayBufferView

ArrayBufferView is a helper type representing any of the following JavaScript TypedArray types:
API Interface JavaScript Reference Référence Typed Arrays

AudioBuffer

Objects of these types are designed to hold small audio snippets, typically less than 45 s. For longer sounds, objects implementing the MediaElementAudioSourceNode are more suitable. The buffer contains data in the following format:  non-interleaved IEEE754 32-bit linear PCM with a nominal range between -1 and +1, that is, 32bits floating point buffer, with each samples between -1.0 and 1.0. If the AudioBuffer has multiple channels, they are stored in separate buffer.
API AudioBuffer Interface Reference Référence Web Audio API

AudioBufferSourceNode

AudioBufferSourceNode has no input and exactly one output. The number of channels in the output corresponds to the number of channels of the AudioBuffer that is set to the AudioBufferSourceNode.buffer property. If there is no buffer set—that is, if the attribute's value is NULL—the output contains one channel consisting of silence. An AudioBufferSourceNode can only be played once; that is, only one call to AudioBufferSourceNode.start() is allowed. If the sound needs to be played again, another AudioBufferSourceNode has to be created. Those nodes are cheap to create, and AudioBuffers can be reused across plays. It is often said that AudioBufferSourceNodes have to be used in a "fire and forget" fashion: once it has been started, all references to the node can be dropped, and it will be garbage-collected automatically.
API Audio AudioBufferSourceNode Interface Reference Web Audio API

AudioListener

It is important to note that there is only one listener per context and that it isn't an AudioNode.
API AudioListener Interface Reference Référence Web Audio API

AudioNode

The AudioNode interface is a generic interface for representing an audio processing module like an audio source (e.g. an HTML <audio> or <video> element, an OscillatorNode, etc.), the audio destination, intermediate processing module (e.g. a filter like BiquadFilterNode or ConvolverNode), or volume control (like GainNode).
API AudioNode Interface Reference Référence Web Audio API