Definisi dan Penggunaan
The controls atribut adalah atribut boolean.
Ketika hadir, itu menetapkan bahwa audio / video controls harus ditampilkan.
Kontrol harus mencakup:
- Play
- Pause
- Seeking
- Volume
- Fullscreen beralih (untuk video)
- Captions/Subtitles (untuk video saja, bila tersedia)
- Track (untuk video saja, bila tersedia)
Berlaku untuk
The controls atribut dapat digunakan pada unsur-unsur berikut:
elemen | Atribut |
---|---|
<audio> | controls |
<video> | controls |
contoh
Audio Contoh
Sebuah <audio> elemen dengan browser default controls :
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
Cobalah sendiri " Video Contoh
Sebuah <video> elemen dengan browser default controls :
<video controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
Cobalah sendiri " Dukungan Browser
The controls
atribut memiliki dukungan browser berikut untuk setiap elemen:
Elemen | |||||
---|---|---|---|---|---|
audio | 4.0 | 9.0 | 3.5 | 4.0 | 10.5 |
video | 4.0 | 9.0 | 3.5 | 4.0 | 10.5 |