Home  >  Article  >  Web Front-end  >  How to specify in HTML if and how the author should load audio/video when the page loads?

How to specify in HTML if and how the author should load audio/video when the page loads?

PHPz
PHPzforward
2023-08-30 13:53:05922browse

How to specify in HTML if and how the author should load audio/video when the page loads?

You can try running the following code to learn how to implement the preload attribute so that the author can provide browsers with tips for the best user experience. Applies to

Example

<!DOCTYPE HTML>
<html>
   <body>
      <video width="300" height = "200" preload = "none" controls>
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         <source src = "/html5/foo.mp4" type = "video/mp4" />
         Your browser does not support the video element.
      </video>
   </body>
</html>

The above is the detailed content of How to specify in HTML if and how the author should load audio/video when the page loads?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete