success.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>跳转提示</title>
  5. <include file="public@head"/>
  6. <style type="text/css">
  7. *{ padding: 0; margin: 0; }
  8. body{ background: #fff; font-family: '微软雅黑'; color: #333; font-size: 16px; }
  9. .system-message{ padding: 24px 48px;text-align: center; }
  10. .system-message h1{ font-size: 100px; font-weight: normal; line-height: 120px; margin-bottom: 12px; text-align: center;}
  11. .system-message .jump{ padding-top: 10px}
  12. .system-message .success,.system-message .error{ line-height: 1.8em; font-size: 36px }
  13. .system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}
  14. </style>
  15. </head>
  16. <body class="body-white">
  17. <include file="public@header"/>
  18. <div class="system-message">
  19. <present name="message">
  20. <h1>^_^</h1>
  21. <p class="success"><?php echo($message); ?></p>
  22. <else/>
  23. <h1>&gt;_&lt;</h1>
  24. <p class="error"><?php echo($msg); ?></p>
  25. </present>
  26. <p class="detail"></p>
  27. <p class="jump">
  28. 页面自动 <a id="href" href="<?php echo($jumpUrl); ?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait); ?></b>
  29. </p>
  30. </div>
  31. <include file="public@footer"/>
  32. <script type="text/javascript">
  33. (function(){
  34. var wait = document.getElementById('wait'),href = document.getElementById('href').href;
  35. var interval = setInterval(function(){
  36. var time = --wait.innerHTML;
  37. if(time <= 0) {
  38. location.href = href;
  39. clearInterval(interval);
  40. };
  41. }, 1000);
  42. })();
  43. </script>
  44. </body>
  45. </html>