1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=0">
- <title>下载</title>
- <script>
- function resizeFontsize(){
- var width = document.documentElement.clientWidth;
- document.documentElement.style.fontSize = width/3.75+'px';
- }
- resizeFontsize();
- window.addEventListener('orientationchange',resizeFontsize);
- window.addEventListener('resize',resizeFontsize);
- </script>
- <style>
- * {
- padding: 0;
- margin:0
- }
- body {
- height: 100vh;
- }
- .bg {
- height: 3.35rem;
- background: url("image/bg.png") center / 100% 100% no-repeat;
- }
- .ios ,.android {
- width: 2.82rem;
- height:0.52rem;
- margin: .4rem auto;
- }
- img {
- width: 100%;
- height:100%;
- display: block;
- }
- </style>
- </head>
- <body>
- <div class="bg"></div>
- <div class="ios">
- <img src="image/ios.png" alt="">
- </div>
- <div class="android">
- <img src="image/android.png" alt="">
- </div>
- <script src="js/jquery-2.1.0.min.js"></script>
- </body>
- </html>
- <script>
-
- $(".ios").click(function() {
- alert("暂无下载");
- // window.location.href = 'itms-services://?action=download-manifest&url=https://lift.whlhcx.com/a.plist';
- });
- $(".android").click(function() {
- alert("暂无下载");
- // window.location.href = 'http://lift.whlhcx.com/a.apk';
- });
- </script>
|