Najnowsze tutoriale tworzenie stron internetowych
 

HTML controls Attribute


Definicja i Wykorzystanie

Te controls atrybut jest atrybutem logiczna.

Gdy występuje, to wskazuje, że audio / wideo controls powinny być wyświetlane.

Kontrole powinny obejmować:

  • Play
  • Pause
  • Seeking
  • Volume
  • Fullscreen przełączania (tylko dla filmu)
  • Captions/Subtitles (tylko dla filmu, jeśli są dostępne)
  • Track (tylko dla filmu, jeśli są dostępne)

Dotyczy

Te controls atrybut może być stosowany na następujących elementach:

Elementy Atrybut
<audio> controls
<video> controls

Przykłady

Audio Przykład

<audio> element o domyślnej przeglądarce 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>
Spróbuj sam "

Video Przykład

<video> element o domyślnej przeglądarce 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>
Spróbuj sam "

Pomoc Browser

Te controls atrybut posiada następujące wsparcie przeglądarki dla każdego elementu:

Element
audio 4,0 9,0 3,5 4,0 10,5
video 4,0 9,0 3,5 4,0 10,5