Articles tagged: API
Found 5012 documents
- Web/API/SpeechSynthesisUtterance/onmark The onmark property of the SpeechSynthesisUtterance interface represents an event handler that ...
- Web/API/SpeechSynthesisUtterance/onpause The onpause property of the SpeechSynthesisUtterance interface represents an event handler that ...
- Web/API/SpeechSynthesisUtterance/onresume The onresume property of the SpeechSynthesisUtterance interface represents an event handler that ...
- Web/API/SpeechSynthesisUtterance/onstart The onstart property of the SpeechSynthesisUtterance interface represents an event handler that ...
- Web/API/SpeechSynthesisUtterance/pitch The pitch property of the SpeechSynthesisUtterance interface gets and sets the pitch at which ...
- Web/API/SpeechSynthesisUtterance/rate The rate property of the SpeechSynthesisUtterance interface gets and sets the speed at which the ...
- Web/API/SpeechSynthesisUtterance/SpeechSynthesisUtterance The SpeechSynthesisUtterance() constructor of the SpeechSynthesisUtterance interface returns a ...
- Web/API/SpeechSynthesisUtterance/text The text property of the SpeechSynthesisUtterance interface gets and sets the text that will be ...
- Web/API/SpeechSynthesisUtterance/voice The voice property of the SpeechSynthesisUtterance interface gets and sets the voice that will ...
- Web/API/SpeechSynthesisUtterance/volume The volume property of the SpeechSynthesisUtterance interface gets and sets the volume that the ...
- Web/API/SpeechSynthesisVoice The SpeechSynthesisVoice interface of the Web Speech API represents a voice that the system ...
- Web/API/SpeechSynthesisVoice/default The default read-only property of the SpeechSynthesisVoice interface returns a Boolean ...
- Web/API/SpeechSynthesisVoice/lang The lang read-only property of the SpeechSynthesisVoice interface returns a BCP 47 language tag ...
- Web/API/SpeechSynthesisVoice/localService The localService read-only property of the SpeechSynthesisVoice interface returns a Boolean ...
- Web/API/SpeechSynthesisVoice/name The name read-only property of the SpeechSynthesisVoice interface returns a human-readable name ...
- Web/API/SpeechSynthesisVoice/voiceURI The voiceURI read-only property of the SpeechSynthesisVoice interface returns the type of URI ...
- Web/API/StaticRange The StaticRange interface provides attributes that track the start and end position of a range, ...
- Web/API/StaticRange/collapsed The collapsed read-only property of the StaticRange interface returns true if the range's start ...
- Web/API/StaticRange/endContainer The endContainer property of the StaticRange interface returns the end Node for the range.
- Web/API/StaticRange/endOffset The endOffset property of the StaticRange interface returns the offset into the end node of the ...
- Web/API/StaticRange/startContainer The startContainer property of the StaticRange interface returns the start Node for the range.
- Web/API/StaticRange/startOffset The startOffset property of the StaticRange interface returns the offset into the start node of ...
- Web/API/StaticRange/StaticRange The StaticRange() constructor creates a new StaticRange object which provides attributes that ...
- Web/API/StaticRange/toRange The toRange() property of the StaticRange interface converts the StaticRange object to a Range ...
- Web/API/StereoPannerNode The pan property takes a unitless value between -1 (full left pan) and 1 (full right pan). This ...
- Web/API/StereoPannerNode/pan An a-rate AudioParam containing the panning to apply.
- Web/API/StereoPannerNode/StereoPannerNode The StereoPannerNode() constructor of the Web Audio API creates a new StereoPannerNode object ...
- Web/API/Storage The Storage interface of the Web Storage API provides access to the session storage or local ...
- Web/API/Storage/clear The clear() method of the Storage interface, when invoked, clears all stored keys.
- Web/API/Storage/getItem The getItem() method of the Storage interface, when passed a key name, will return that key's value.
- Web/API/Storage/key The key() method of the Storage interface, when passed a number n, returns the name of the nth ...
- Web/API/Storage/length The length read-only property of the Storage interface returns an integer representing the ...
- Web/API/Storage/LocalStorage localStorage is analogous to sessionStorage, with the same same-origin rules applied, but it is ...
- Web/API/Storage/removeItem The removeItem() method of the Storage interface, when passed a key name, will remove that key ...
- Web/API/Storage/setItem The setItem() method of the Storage interface, when passed a key name and value, will add that ...
- Web/API/StorageEstimate The StorageEstimate dictionary is used by the StorageManager to provide estimates of the size of ...
- Web/API/StorageEstimate/quota The StorageEstimate dictionary's quota property is a conservative approximation of how much ...
- Web/API/StorageEstimate/usage The StorageEstimate dictionary's usage property is a conservative approximation of how much ...
- Web/API/StorageEvent A StorageEvent is sent to a window when a storage area it has access to is changed within the ...
- Web/API/StorageManager The StorageManager interface of the the Storage API provides an interface for managing ...
- Web/API/StorageManager/estimate The estimate() method of the StorageManager interface asks the Storage Manager to obtain quota ...
- Web/API/Storage_API The Storage Standard defines a common, shared storage system to be used by all APIs and ...
- Web/API/Streams_API The Streams API allows JavaScript to programmatically access streams of data received over the ...
- Web/API/Streams_API/Concepts The Streams API adds a very useful set of tools to the web platform, providing objects allowing ...
- Web/API/Streams_API/Using_readable_streams That explains the basics of “default” readable streams. We’ll explain bytestreams in a separate ...
- Web/API/Streams_API/Using_writable_streams As a JavaScript developer, programmatically writing data to a stream is very useful! This ...
- Web/API/StyleSheet An object implementing the StyleSheet interface represents a single style sheet. CSS style ...
- Web/API/StyleSheet/href Returns the location of the stylesheet.
- Web/API/StyleSheet/media media specifies the intended destination medium for style information.
- Web/API/StyleSheet/ownerNode ownerNode returns the node that associates this style sheet with the document.
- Web/API/StyleSheet/parentStyleSheet Returns the stylesheet that is including this one, if any.
- Web/API/StyleSheet/title title returns the advisory title of the current style sheet.
- Web/API/StyleSheet/type type specifies the style sheet language for this style sheet.
- Web/API/StyleSheetList The StyleSheetList interface represents a list of StyleSheet.
- Web/API/SubtleCrypto The SubtleCrypto interface represents a set of cryptographic primitives. It is available via the ...
- Web/API/SubtleCrypto/decrypt The SubtleCrypto.decrypt() method returns a Promise of the plaintext corresponding to the ...
- Web/API/SubtleCrypto/deriveKey The SubtleCrypto.deriveKey() method returns a Promise of a newly generated CryptoKey derivated ...
- Web/API/SubtleCrypto/digest The SubtleCrypto.digest() method returns a Promise of a digest generated from the hash function ...
- Web/API/SubtleCrypto/encrypt The SubtleCrypto.encrypt() method returns a Promise of the encrypted data corresponding to the ...
- Web/API/SubtleCrypto/exportKey The SubtleCrypto.exportKey() method returns a Promise of the key encrypted in the requested ...
- Web/API/SubtleCrypto/generateKey The SubtleCrypto.generateKey() method returns a Promise of a newly generated CryptoKey, for ...
- Web/API/SubtleCrypto/importKey The SubtleCrypto.importKey() method returns a Promise of the CryptoKey generated from the data ...
- Web/API/SubtleCrypto/sign The SubtleCrypto.sign() method returns a Promise containing the signature corresponding to the ...
- Web/API/SubtleCrypto/unwrapKey The SubtleCrypto.unwrapKey() method returns a Promise of a CryptoKey corresponding to the ...
- Web/API/SubtleCrypto/verify The SubtleCrypto.verify() method returns a Promise of a Boolean value indicating if the ...
- Web/API/SubtleCrypto/wrapKey The SubtleCrypto.wrapKey() method returns a Promise of a wrapped symmetric key for usage ...
- Web/API/SVGAElement The SVGAElement interface provides access to the properties of a element, as well as methods to ...
- Web/API/SVGAElement/SVGAlement.target The SVGAElement.target read-only property of SVGAElement returns an SVGAnimatedString object ...
- Web/API/SVGAElement/target The SVGAElement.target read-only property of SVGAElement returns an SVGAnimatedString object ...
- Web/API/SVGAltGlyphDefElement The SVGAltGlyphDefElement interface corresponds to the altGlyphDef element.
- Web/API/SVGAltGlyphElement The SVGAltGlyphElement interface represents an altglyph element. This interface makes it ...
- Web/API/SVGAltGlyphElement/glyphRef The SVGAltGlyphElement.glyphRef property is a DOMString representing a glyph identifier. It has ...
- Web/API/SVGAltGlyphItemElement The SVGAltGlyphItemElement interface corresponds to the altGlyphItem element.
- Web/API/SVGAngle The SVGAngle interface is used to represent a value that can be an angle or number value. An ...
- Web/API/SVGAnimateColorElement The SVGAnimateColorElement interface corresponds to the animateColor element.
- Web/API/SVGAnimatedAngle The SVGAnimatedAngle interface is used for attributes of basic type angle which can be animated.
- Web/API/SVGAnimatedBoolean The SVGAnimatedBoolean interface is used for attributes of type boolean which can be animated.
- Web/API/SVGAnimatedEnumeration The SVGAnimatedEnumeration interface is used for attributes whose value must be a constant from ...
- Web/API/SVGAnimatedInteger The SVGAnimatedInteger interface is used for attributes of basic type integer which can be animated.
- Web/API/SVGAnimatedLength The SVGAnimatedLength interface is used for attributes of basic type length which can be animated.
- Web/API/SVGAnimatedLengthList The SVGAnimatedLengthList interface is used for attributes of type SVGLengthList which can be ...
- Web/API/SVGAnimatedNumber The SVGAnimatedNumber interface is used for attributes of basic type Number which can be animated.
- Web/API/SVGAnimatedNumberList The SVGAnimatedNumber interface is used for attributes which take a list of numbers and which ...
- Web/API/SVGAnimatedPoints The SVGAnimatedPoints interface supports elements which have a points attribute which holds a ...
- Web/API/SVGAnimatedPreserveAspectRatio The SVGAnimatedPreserveAspectRatio interface is used for attributes of type ...
- Web/API/SVGAnimatedRect The SVGAnimatedRect interface is used for attributes of basic SVGRect which can be animated.
- Web/API/SVGAnimatedString The SVGAnimatedString interface represents string attributes which can be animated from each SVG ...
- Web/API/SVGAnimatedTransformList The SVGAnimatedTransformList interface is used for attributes which take a list of numbers and ...
- Web/API/SVGAnimateElement The SVGAnimateElement interface corresponds to the animate element.
- Web/API/SVGAnimateMotionElement The SVGAnimateMotionElement interface corresponds to the animateMotion element.
- Web/API/SVGAnimateTransformElement The SVGAnimateTransformElement interface corresponds to the animateTransform element.
- Web/API/SVGAnimationElement The SVGAnimationElement interface is the base interface for all of the animation element ...
- Web/API/SVGAnimationElement/onbegin The SVGAnimationElement.onbegin property refers to the event handler for the beginEvent.
- Web/API/SVGAnimationElement/onend The SVGAnimationElement.onend property refers to the event handler for the endEvent.
- Web/API/SVGAnimationElement/onrepeat The SVGAnimationElement.onrepeat property refers to the event handler for the repeatEvent.
- Web/API/SVGAnimationElement/targetElement The SVGAnimationElement.targetElement property refers to the element which is being animated. If ...
- Web/API/SVGCircleElement The SVGCircleElement interface is an interface for the circle element. The circle element is ...
- Web/API/SVGClipPathElement The SVGClipPathElement interface provides access to the properties of clipPath elements, as well ...
- Web/API/SVGColorProfileElement The SVGColorProfileElement interface corresponds to the color-profile element.
- Web/API/SVGComponentTransferFunctionElement The SVGComponentTransferFunctionElement interface defines a base interface used by the component ...