video.html 760 B

12345678910111213141516171819202122232425262728
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <link rel="stylesheet" href="/repair/style.css">
  9. <title>微课堂</title>
  10. </head>
  11. <body>
  12. <div class="container" style="background-color: #fff">
  13. {foreach $list as $k=>$v}
  14. <div class="video-box">
  15. <video poster="{$v['img']}" controls loop>
  16. <source src="{$v['path']}" type="video/mp4">
  17. </video>
  18. <div class="title">{$v['title']}</div>
  19. </div>
  20. {/foreach}
  21. </div>
  22. </body>
  23. </html>
  24. <script>
  25. </script>