123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,user-scalable=no">
- <meta name="format-detection" content="telephone=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <title>正在加载中</title>
- <style type="text/css">
- html,body{
- overflow: hidden;
- margin: 0;
- padding: 0;
- height: 100%;
- width: 100%;
- }
-
- .sk-wave {
- position: absolute;
- left: 50%;
- top: 50%;
- width: 6em;
- height: 4em;
- margin: -2rem 0 0 -3em;
- text-align: center;
- font-size: 1em;
- }
- .sk-wave .sk-rect {
- background-color: #337ab7;
- height: 100%;
- width: .5em;
- display: inline-block;
- -webkit-animation: sk-wave-stretch-delay 1.2s infinite ease-in-out;
- animation: sk-wave-stretch-delay 1.2s infinite ease-in-out;
- }
- .sk-wave .sk-rect-1 {
- -webkit-animation-delay: -1.2s;
- animation-delay: -1.2s;
- }
- .sk-wave .sk-rect-2 {
- -webkit-animation-delay: -1.1s;
- animation-delay: -1.1s;
- }
- .sk-wave .sk-rect-3 {
- -webkit-animation-delay: -1s;
- animation-delay: -1s;
- }
- .sk-wave .sk-rect-4 {
- -webkit-animation-delay: -0.9s;
- animation-delay: -0.9s;
- }
- .sk-wave .sk-rect-5 {
- -webkit-animation-delay: -0.8s;
- animation-delay: -0.8s;
- }
- @-webkit-keyframes sk-wave-stretch-delay {
- 0%, 40%, 100% {
- -webkit-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
- 20% {
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
- }
- @keyframes sk-wave-stretch-delay {
- 0%, 40%, 100% {
- -webkit-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
- 20% {
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
- }
- </style>
- </head>
- <body>
- <div class="sk-wave">
- <div class="sk-rect sk-rect-1"></div>
- <div class="sk-rect sk-rect-2"></div>
- <div class="sk-rect sk-rect-3"></div>
- <div class="sk-rect sk-rect-4"></div>
- <div class="sk-rect sk-rect-5"></div>
- </div>
- </body>
- </html>
- <script type="text/javascript" src="{:asset('/libs/zepto/zepto.min.js')}"></script>
- <script type="text/javascript" src="{:asset('/libs/Zepto-Cookie/zepto.cookie.min.js')}"></script>
- <script type="text/javascript" src="{:asset('/js/frontend/common.js')}"></script>
- <script type="text/javascript" src="{:asset('/js/frontend/cps_log.js')}"></script>
- <script type="text/javascript">
- window.theme = '{$Think.config.template.view_theme}';
- window.log_host = '{$log_host}';
- var user_id = $.fn.cookie('user_id');
- var channel_id = $.fn.cookie('channel_id');
- var openid = $.fn.cookie('openid');
- cpslog([701, {
- user_id: user_id,
- map: {
- channel_id: channel_id,
- openid: openid,
- silent:'silent'
- }
- }]);
- var url = '{$jumpUrl}';
- window.location.href = url;
- </script>
|