download.blade.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!DOCTYPE html>
  2. <html class="bg-white">
  3. <head>
  4. <meta charset="utf-8">
  5. <!--此行代码为禁止苹果手机自动识别电话号码-->
  6. <meta name="format-detection" content="telephone=no">
  7. <meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,initial-scale=1.0,width=device-width" />
  8. <meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
  9. <title>下载APP</title>
  10. <link rel="stylesheet" type="text/css" href="{{asset('home/css/home.css')}}" />
  11. <link rel="stylesheet" type="text/css" href="{{asset('home/css/style/style.css')}}" />
  12. <link rel="stylesheet" type="text/css" href="{{asset('home/css/alert.css')}}" />
  13. <style>
  14. .weixin-con{ display: none; position: fixed; left: 0; top: 0; bottom: 0; width: 100%; padding-top: 8%; z-index: 100; background: #FFFFFF;}
  15. .weixin-con.active{ display: block;}
  16. .weixin-con img{ width: 100%;}
  17. </style>
  18. <script src="{{asset('home/script/jQuery-2.2.0.min.js')}}"></script>
  19. {{--<script src="{{asset('home/script/alert.js')}}"></script>--}}
  20. <script src="{{asset('home/script/vue.js')}}"></script>
  21. <script type="text/javascript">
  22. var clientHeight = 0;
  23. $(document).ready(function(){
  24. var ua = window.navigator.userAgent.toLowerCase();
  25. // alert(window.navigator.userAgent)
  26. // alert(ua);
  27. if (ua.indexOf('micromessenger') != -1 || ua.indexOf('qqtheme') >-1 ) {
  28. $(".weixin-con").addClass("active");
  29. }else{
  30. $(".weixin-con").removeClass("active");
  31. }
  32. getHeight();
  33. });
  34. window.onresize = function (){
  35. getHeight();
  36. }
  37. function getHeight(){
  38. if($(window).height() > $(window).width()){
  39. clientHeight = $(window).height();
  40. }else{
  41. clientHeight = ($(window).width())*1.75;
  42. }
  43. $(".dl-con").height(clientHeight);
  44. }
  45. </script>
  46. </head>
  47. <body>
  48. <div id="app">
  49. <div class="mui-content">
  50. <div class="share-bg">
  51. <img src="{{asset('home/image/bg/dlbg.jpg')}}" />
  52. </div>
  53. <div class="dl-logo">
  54. <img src="{{asset('home/image/icon/sharelogo.png')}}" />
  55. </div>
  56. <img class="dl-mid" src="{{asset('home/image/bg/dlmid.png')}}" />
  57. <div class="dl-btn" onclick="javascript:location.href='<?php echo $appdownload;?>'">
  58. <img src="{{asset('home/image/icon/android.png')}}" />
  59. Android版下载
  60. </div>
  61. </div>
  62. <div class="weixin-con">
  63. <img src="{{ asset('front/app-open.png') }}" />
  64. </div>
  65. <!--加载动画样式-->
  66. <div id="allload" class="mine-dialog" v-cloak>
  67. <div class="loader-inner ball-spin-fade-loader">
  68. <div></div>
  69. <div></div>
  70. <div></div>
  71. <div></div>
  72. <div></div>
  73. <div></div>
  74. <div></div>
  75. <div></div>
  76. </div>
  77. </div>
  78. </div>
  79. <script>
  80. </script>
  81. </body>
  82. </html>