Current Assignment(s)
A5: Multimedia
Due: Recommended by Monday, 5.28
Due: Recommended by Monday, 5.28
Other Attributes
<audio src="#" preload controls ></audio>
There are several other attributes that can be applied to the <audio>
to make it behave as intended.
controls
When the controls
attribute is supplied it indicates the browser should supply its own controls for playback. If you do not use this attribute, no controls will be shown by default.
autoplay
When used, this attribute specifies that the file should play automatically.
NOTE: Remember, this is considered poor-practice, and in most cases, it is better to let the user choose whether to start the audio or not.
preload
As with the <video>
element, this attribute tells the browser what to do when the page loads. It can have one of three values:
none
- The browser should not load the audio until the user presses play.auto
(default) - The browser should download the audio when the page loads.metadata
- The browser should just collect information such as the size, first frame, track list, and duration.
loop
This tells the browser whether or not to loop the audio.
- Previous
- Next