12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>Document</title>
- <style>
- body {
- margin: 0;
- }
- * {
- margin: 0;
- padding: 0;
- }
- .video-wrap {
- position: relative;
- width: 100%;
- }
- .video-tool {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- margin: auto;
- height: 50px;
- text-align: center;
- font-size: 16px;
- color: #fff;
- display: none;
- }
- .video-wrap canvas {
- width: 100%;
- }
- </style>
- </head>
- <body>
- <div class="video-wrap">
- <canvas width="375" height="211" id="img2video1"></canvas>
- <div class="loadedPercent" id="loadedPercent"></div>
- <div class="video-tool" id="videoPlayBtn">点击继续</div>
- <div class="video-tool" id="videoEndBtn">点击重播</div>
- </div>
- <script src="./index.js"></script>
- </body>
- </html>
|