HTML5 preload attribute



To prevent HTML5 video from loading before playing, use preload attribute. You can try to run the following code:

<!DOCTYPE html> <html>    <body>       <video width = "350" height = "200" controls = "controls" preload = "none">          <source src = "movie.mp4" type = "video/mp4" />          <source src = "movie.ogg" type = "video/ogg" />          Your browser does not support the video tag.       </video>    </body> </html>
Updated on: 2020-01-29T10:22:10+05:30

156 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements