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

Làm cách nào để ngăn video HTML5 tải trước khi phát?


Để ngăn video HTML5 tải trước khi phát, bạn có thể thử chạy đoạn mã sau. Bạn cần sử dụng tải trước và đặt nó thành không -

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