Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pay_success.htm 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {__NOLAYOUT__}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>跳转提示</title>
  6. <style type="text/css">
  7. *{ padding: 0; margin: 0; }
  8. body{ background: #fff; font-family: '微软雅黑'; color: #CCC; font-size: 16px; }
  9. .system-message{ padding: 24px 48px; margin:auto; box-shadow: 0px 0px 10px rgba(0,0,0,.2)!important; top:50%; width:500px; border-radius:2px;
  10. -moz-border-radius:10px; /* Old Firefox */}
  11. .system-message .jump{ padding-top: 10px; color: #999;text-align: center;}
  12. .system-message .success,.system-message .error{ line-height: 1.8em; color: #000; font-size: 18px;font-weight: bold; text-align: center;}
  13. .system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}
  14. .status-ico{margin: 20px auto;width: 73px;height: 76px;display: block;background: url(__STATIC__/admin/images/ico_right_wrong.png) no-repeat}
  15. .status-ico-ok{background-position: 0 0}
  16. .status-ico-error{background-position: -97px 0}
  17. </style>
  18. <script type="text/javascript" src="__STATIC__/common/js/jquery.min.js?v={$version|default='v1.6.4'}"></script>
  19. <script type="text/javascript">
  20. $(function(){
  21. var height2=$('.system-message').height();
  22. var height1=$(window).height();
  23. $('.system-message').css('margin-top',((height1-height2)/3)-30);
  24. });
  25. </script>
  26. <!-- Bootstrap core CSS -->
  27. <link href="__PUBLIC__/plugins/bootstrap/css/.min.css" rel="stylesheet">
  28. </head>
  29. <body>
  30. <div class="system-message">
  31. <div class="status-ico status-ico-ok"></div>
  32. <p class="success">支付成功!</p>
  33. <p class="jump">
  34. 页面自动 <a id="href" href="{$url}">关闭</a> 等待时间: <b id="wait" data-data="{$data}">{$wait}</b>
  35. </p>
  36. </div>
  37. <script type="text/javascript">
  38. (function(){
  39. var wait = document.getElementById('wait'),
  40. href = document.getElementById('href').href;
  41. var interval = setInterval(function(){
  42. var time = --wait.innerHTML;
  43. if(time <= 0) {
  44. window.close();
  45. clearInterval(interval);
  46. };
  47. }, 1000);
  48. })();
  49. </script>
  50. </body>
  51. </html>