12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!DOCTYPE html>
- <html lang="en">
- <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"/>
- <style type="text/css">
- html,body {width: 100%;padding: 0;margin: 0;}
- body{background: #F7F7F7;box-sizing: border-box;}
- img {width: 100%;height: 100%;}
- .liveplayer {
- position: relative;
- width: 100%;
- height: 100vh;
- background: url("../image/bgVideo.png");
- }
- video {
- width: 100%;
- height: 100vh;
- position: absolute;
- bottom: 0;
- left: 0;
- }
- .btn-div {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- bottom: 0;
- right: 0;
- left: 0;
- margin: auto;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .btn{
- width: 1rem;
- height: 1rem;
- }
- .btn img{
- width: 100%;
- height: 100%;
- }
- </style>
- <script type="text/javascript">
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- window.onresize = function(){
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- }
- </script>
- </head>
- <body>
- <img src="./img/money_saving_guide.png" alt="">
- <div class="liveplayer">
- <video controls poster="img/bgVideo.png">
- <!-- <source src="video/liedou_taobao.mp4" type="video/mp4"> -->
- <source src="../video/liedou_taobao.mp4" type="video/mp4">
- </video>
- </div>
- </body>
- </html>
|