Computer >> Máy Tính >  >> Lập trình >> Javascript

Thuộc tính tải trước HTML5


Để ngăn video HTML5 tải trước khi phát, hãy sử dụng thuộc tính tải trước. Bạn có thể thử chạy đoạn mã sau:

<!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>