1.php 943 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <video id="videoBox" autoplay controls="controls">
  11. <source src="https://www.w3schools.com/html/mov_bbb.mp4" />
  12. </video>
  13. <button onclick="cut()">截图</button>
  14. <div id="imgOut"></div>
  15. <script>
  16. function cut() {
  17. "use strict";
  18. var scale = 0.25;
  19. var video = document.getElementById("videoBox");
  20. var canvas = document.createElement("canvas");
  21. canvas.width = video.videoWidth * scale;
  22. canvas.height = video.videoHeight * scale;
  23. canvas.getContext('2d').drawImage(video, 0, 0, canvas.width, canvas.height);
  24. canvas.setAttribute("id", "canvas");
  25. document.getElementById("imgOut").append(canvas)
  26. }
  27. </script>
  28. </body>
  29. </html>