12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
- <title>淘宝搜索商品</title>
- <link rel="stylesheet" type="text/css" href="public/public_css.css"/>
- <script type="text/javascript" src="public/public.js"></script>
- <style type="text/css">
- body{
- background: url(image/openTaobao.png) no-repeat;
- width: 100%;
- }
- .liveplayer {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- margin: auto;
- }
- video {
- width: 100%;
- }
- </style>
- </head>
-
- <body>
- <div class="liveplayer">
- <video controls poster="image/openTaobao.png">
- <source src="video/open_taobao.mp4" type="video/mp4">
- </video>
- </div>
- </body>
- </html>
|