12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!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"/>
- <style type="text/css">
- body{background: #FFFFFF;margin-bottom: 0.2rem;}
- h3{text-align: center;margin-top: 0.2rem;margin-bottom: 0.3rem;font-size: 0.22rem;color: red;}
- .wenan{
- text-align: center;
- position: relative;
- font-size: 0.14rem;
- font-weight: bold;
- color: red;
- letter-spacing: 0.02rem;
- padding-top: 0.4rem;
- }
- .wenan:after{
- content: "";
- display: block;
- width: 1rem;
- height: 1rem;
- background: url(https://small-app.oss-cn-beijing.aliyuncs.com/youhuiquan/1027669.gif) no-repeat;
- background-size: 100%;
- position: absolute;
- top: -0.3rem;
- left: 2.4rem;
- }
- h5{text-align: center;letter-spacing: 0.01rem}
- .title{padding-left: 0.5rem;font-size: 0.16rem;}
- button{font-size: 0.14rem;margin: auto;display: block;padding: 0.05rem 0.2rem;margin-top: 0.2rem;margin-bottom:0.2rem;border: 0.01rem solid red;color: red;border-radius: 0.1rem;}
- .red_envelopes{width: 80%;margin: auto;margin-top: 0.2rem;}
- </style>
- </head>
- <body>
- <h3>『天天省钱快报』撒钱啦!</h3>
- <div class="wenan">
- 现金红包天天领<br/>数量有限,先到先得,抢到就是赚到
- </div>
- <h5>如何领红包?</h5>
- <p class="title">① 点击下方按钮下载天天省钱快报</p>
- <button onclick="goDownload()">点击下载</button>
- <p class="title">② 注册后点击“新人领红包”</p>
- <img class="red_envelopes" src="image/red_envelopes.png" />
- </body>
- </html>
- <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";
- }
- function goDownload () {
- if(navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)){
- window.location.href = 'https://itunes.apple.com/cn/app/%E5%A4%A9%E5%A4%A9%E7%9C%81%E9%92%B1%E5%BF%AB%E6%8A%A5-%E8%B4%AD%E7%89%A9%E7%9C%81%E9%92%B1%E8%BF%94%E5%88%A9%E7%9A%84%E4%BC%98%E6%83%A0%E5%88%B8app/id1416438252?mt=8'
- }
- }
- </script>
|