1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!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="/static/bootstrap-3.3.7/css/bootstrap.css">
- <link rel="stylesheet" href="/static/h5/css/common.css">
- <title>视频播放</title>
- <style>
- html{
- margin: 0;
- padding: 0;
- background-color: #060606;
- }
- body{
- background-color: #060606;
- margin: 0;
- padding: 0;
- }
- .container{
- max-width: 750px;
- height: auto;
- margin: 0;
- padding: 0px;
- }
- .container video{
- width: 91%;
- height: 300px;
- line-height: 300px;
- position: fixed;
- top: 22%;
- }
- .footer-back{
- position: fixed;
- z-index: 1000;
- width: 100%;
- height: 45px;
- line-height: 45px;
- background-color: #ffffff;
- bottom: 0;
- left: 0;
- box-shadow: 0px 0px 10px 0px rgba(26, 25, 26, 0.05);
- display: table-cell;
- vertical-align: middle;
- text-align: center;
- }
- .footer-back a img{
- width: 43px;
- height: 43px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <video controls>
- <source src="{$url}">
- </video>
- <div class="footer-back">
- <a href="javascript:;" onclick="javascript:history.back(-1);"><img src="/img/back.png"></a>
- </div>
- </div>
- </body>
- </html>
|