El atributo de precarga de HTML se usa para especificar la forma en que el autor cree que se debe cargar el medio cuando se carga la página.
El atributo de precarga le permite al autor retratar al navegador sobre la forma en que se debe implementar la experiencia del usuario de un sitio web.
Etiquetas compatibles:
Ejemplo de precarga de video:
<!DOCTYPE html> <html> <head> <title> HTML Video Preload Attribute </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2 style="font-family: Impact"> HTML Video Preload Attribute </h2> <br> <video id="Test_Video" width="360" height="240" controls preload="none"> <source src="samplevideo.mp4" type="video/mp4"> </video> </body> </html>
Producción:
Ejemplo de precarga de audio:
<!DOCTYPE html> <html> <head> <title> HTML Audio preload Attribute </title> </head> <body style="text-align: center"> <h1 style="color: green"> GeeksforGeeks </h1> <h2 style="font-family: Impact"> HTML Audio preload Attribute </h2> <br> <audio id="Test_Audio" controls preload="none"> <source src="sample1.mp3" type="audio/mpeg"> </audio> </body> </html>
Navegadores compatibles: los navegadores compatibles con el atributo de precarga de video HTML se enumeran a continuación
- Google Chrome 4.0
- Firefox 4.0
- Apple Safari 4.0
- Ópera 10.5
Publicación traducida automáticamente
Artículo escrito por shubham_singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA