1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!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, minimum-scale=1, maximum-scale=1, user-scalable=no"/>
- <title>充值中心</title>
- <link rel="stylesheet" href="./common/reset.css">
- <link rel="stylesheet" href="./css/paymentResult.css?v=1">
- <script src="./common/jquery-2.1.0.js"></script>
- <script>
- var viewport = document.querySelector("meta[name=viewport]")
- if (window.devicePixelRatio == 1) {
- viewport.setAttribute('content', 'width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no')
- }
- if (window.devicePixelRatio == 2) {
- viewport.setAttribute('content', 'width=device-width, initial-scale=0.5, maximum-scale=0.5, minimum-scale=0.5, user-scalable=no')
- }
- if (window.devicePixelRatio == 3) {
- viewport.setAttribute('content', 'width=device-width, initial-scale=0.333333333, maximum-scale=0.333333333, minimum-scale=0.333333333, user-scalable=no')
- }
- document.documentElement.style.fontSize = (document.documentElement.clientWidth / 375) * 100 + "px";
- window.onresize = function () {
- document.documentElement.style.fontSize = (document.documentElement.clientWidth / 375) * 100 + "px";
- }
- </script>
- </head>
- <body>
- <!-- 充值成功 -->
- <div class="paymentSuccess">
- <img src="./img/paymentSuccess.png" class="paymentImg"/>
- <p class="hint">充值成功!</p>
- <button onclick="skipGrap()">去抢单</button>
- </div>
- <!-- 充值失败 -->
- <div class="paymentFail paymentErrer">
- <img src="./img/paymentFail.png" class="paymentImg"/>
- <h3>充值失败!</h3>
- <!-- <p class="hint"></p> -->
- <!-- <button>去抢单</button> -->
- </div>
- <!-- 充值中 -->
- <div class="paymentFail paymentIng">
- <img src="./img/paymentIng.png" class="paymentImg"/>
- <h3>充值中...</h3>
- </div>
- <div class="alert-info" style="display: none;">
- <!-- tip提示,3s后消失 -->
- <p>请在浏览器中打开</p>
- </div>
- <!-- loading -->
- <div class="loading">
- <img src="./common/loading.gif" />
- </div>
- </body>
- </html>
- <script src="./js/paymentResult.js?v=8"></script>
|