VOOZH about

URL: https://www.geeksforgeeks.org/html/html-video-preload-attribute/

⇱ HTML | <video> preload Attribute - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML | <video> preload Attribute

Last Updated : 15 Jul, 2022

The HTML audio preload Attribute is used to specify the way the author thinks the video should be loaded when the page loads. The video preload attribute allows the author to portray to the browser about the way the user experience of a website should be implemented. 

Syntax:

<video preload="auto | metadata | none"> 

Attribute Values:

  • auto: It is used to specify that the browser should load the entire video when the page loads.
  • metadata: It is used to specify that the browser should load only metadata when the page loads.
  • none: It is used to specify that the browser should NOT load the video when the page loads.

Example: 

Output:

 👁 Image
 

Supported Browsers: The browsers supported by HTML video preload Attribute are listed below:

  • Google Chrome 3.0 and above
  • Edge 12.0 and above
  • Firefox 4.0 and above
  • Apple Safari 3.1 and above
  • Internet Explorer 9 and above
  • Opera 
Comment
Article Tags: