Author thinks that the sound should NOT be loaded when the page loads.
The
preload
attribute specifies if and how the author thinks that the audio file should be loaded when the page loads.
The
preload
attribute allows the author to provide a hint to the browser about what he/she thinks will lead to the best user experience. This attribute may be ignored in some instances.
Note:
The preload attribute is ignored if
autoplay
is present.
The numbers in the table specify the first browser version that fully supports the attribute.
<audio preload="auto|metadata|none">
Value | Description |
---|---|
auto | The author thinks that the browser should load the entire audio file when the page loads |
metadata | The author thinks that the browser should load only metadata when the page loads |
none | The author thinks that the browser should NOT load the audio file when the page loads |
Example:
HTML
<!DOCTYPE html>
<html>
<body>
<h1>The audio preload attribute</h1>
<p>Click on the play button to play a sound:</p>
<audio controls preload="none"> <source src="https://www.w3schools.com/tags/horse.ogg" type="audio/ogg"> <source src="https://www.w3schools.com/tags/horse.ogg" type="audio/mpeg"> Your browser does not support the audio element.
</audio>
</body>
</html>
How to create HTML <audio> Tag | HTML Tag |
What Audio Format and Browser will Support for HTML <audio> Tag | HTML Tag |
What types of Browsers will Browser Support for HTML <audio> Tag | HTML Tag |
Attributes for HTML <audio> Tag | HTML Tag |
How to add HTML <audio> autoplay Attribute | HTML Tag |
How to add HTML <audio> controls Attribute | HTML Tag |
How to add HTML <audio> loop Attribute | HTML Tag |
How to add HTML <audio> muted Attribute | HTML Tag |
How to add HTML <audio> preload Attribute | HTML Tag |
How to add HTML <audio> preload auto Attribute | HTML Tag |
How to add HTML <audio> preload metadata Attribute | HTML Tag |
How to add HTML <audio> preload none Attribute | HTML Tag |
How to add HTML <audio> src Attribute | HTML Tag |
Type
: |
html |
Category
: |
Web Tutorial |
Sub Category
: |
HTML Tag |
Uploaded by
: |
Admin |