12345678910111213141516171819202122232425262728 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <link rel="stylesheet" href="/repair/style.css">
- <title>微课堂</title>
- </head>
- <body>
- <div class="container" style="background-color: #fff">
- {foreach $list as $k=>$v}
- <div class="video-box">
- <video poster="{$v['img']}" controls loop>
- <source src="{$v['path']}" type="video/mp4">
- </video>
- <div class="title">{$v['title']}</div>
- </div>
- {/foreach}
- </div>
- </body>
- </html>
- <script>
- </script>
|