jumpurl_silent.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,user-scalable=no">
  6. <meta name="format-detection" content="telephone=no">
  7. <meta name="apple-mobile-web-app-capable" content="yes">
  8. <title>正在加载中</title>
  9. <style type="text/css">
  10. html,body{
  11. overflow: hidden;
  12. margin: 0;
  13. padding: 0;
  14. height: 100%;
  15. width: 100%;
  16. }
  17. .sk-wave {
  18. position: absolute;
  19. left: 50%;
  20. top: 50%;
  21. width: 6em;
  22. height: 4em;
  23. margin: -2rem 0 0 -3em;
  24. text-align: center;
  25. font-size: 1em;
  26. }
  27. .sk-wave .sk-rect {
  28. background-color: #337ab7;
  29. height: 100%;
  30. width: .5em;
  31. display: inline-block;
  32. -webkit-animation: sk-wave-stretch-delay 1.2s infinite ease-in-out;
  33. animation: sk-wave-stretch-delay 1.2s infinite ease-in-out;
  34. }
  35. .sk-wave .sk-rect-1 {
  36. -webkit-animation-delay: -1.2s;
  37. animation-delay: -1.2s;
  38. }
  39. .sk-wave .sk-rect-2 {
  40. -webkit-animation-delay: -1.1s;
  41. animation-delay: -1.1s;
  42. }
  43. .sk-wave .sk-rect-3 {
  44. -webkit-animation-delay: -1s;
  45. animation-delay: -1s;
  46. }
  47. .sk-wave .sk-rect-4 {
  48. -webkit-animation-delay: -0.9s;
  49. animation-delay: -0.9s;
  50. }
  51. .sk-wave .sk-rect-5 {
  52. -webkit-animation-delay: -0.8s;
  53. animation-delay: -0.8s;
  54. }
  55. @-webkit-keyframes sk-wave-stretch-delay {
  56. 0%, 40%, 100% {
  57. -webkit-transform: scaleY(0.4);
  58. transform: scaleY(0.4);
  59. }
  60. 20% {
  61. -webkit-transform: scaleY(1);
  62. transform: scaleY(1);
  63. }
  64. }
  65. @keyframes sk-wave-stretch-delay {
  66. 0%, 40%, 100% {
  67. -webkit-transform: scaleY(0.4);
  68. transform: scaleY(0.4);
  69. }
  70. 20% {
  71. -webkit-transform: scaleY(1);
  72. transform: scaleY(1);
  73. }
  74. }
  75. </style>
  76. </head>
  77. <body>
  78. <div class="sk-wave">
  79. <div class="sk-rect sk-rect-1"></div>
  80. <div class="sk-rect sk-rect-2"></div>
  81. <div class="sk-rect sk-rect-3"></div>
  82. <div class="sk-rect sk-rect-4"></div>
  83. <div class="sk-rect sk-rect-5"></div>
  84. </div>
  85. </body>
  86. </html>
  87. <script type="text/javascript" src="{:asset('/libs/zepto/zepto.min.js')}"></script>
  88. <script type="text/javascript" src="{:asset('/libs/Zepto-Cookie/zepto.cookie.min.js')}"></script>
  89. <script type="text/javascript" src="{:asset('/js/frontend/common.js')}"></script>
  90. <script type="text/javascript" src="{:asset('/js/frontend/cps_log.js')}"></script>
  91. <script type="text/javascript">
  92. window.theme = '{$Think.config.template.view_theme}';
  93. window.log_host = '{$log_host}';
  94. var user_id = $.fn.cookie('user_id');
  95. var channel_id = $.fn.cookie('channel_id');
  96. var openid = $.fn.cookie('openid');
  97. cpslog([701, {
  98. user_id: user_id,
  99. map: {
  100. channel_id: channel_id,
  101. openid: openid,
  102. silent:'silent'
  103. }
  104. }]);
  105. var url = '{$jumpUrl}';
  106. window.location.href = url;
  107. </script>