chart.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <?php include "libs/includelibs.php"; ?>
  6. <title>神宠2 统计图表窗口</title>
  7. <style >
  8. #tabs{ padding: 0px;margin: 0px; display: inline-block;width: 1020px;height: 950px; }
  9. .tab { padding: 0px;margin: 0px; height: 100%;}
  10. .frame {padding: 0px;margin: 0px;width: 100%;height: 100%;border-style: none;}
  11. li {padding: 3px 0px; }
  12. </style>
  13. <script type="text/javascript">
  14. $(function () {
  15. $("#tabs").tabs({
  16. active: 2 // 默认显示页面
  17. });
  18. });
  19. </script>
  20. </head>
  21. <body style='max-width:1020px;margin:auto;'>
  22. <div id="tabs">
  23. <ul>
  24. <li><a href="#tabs-1">新手引导</a></li>
  25. <li><a href="#tabs-2">任务步骤</a></li>
  26. <li><a href="#tabs-3">付费统计</a></li>
  27. <li><a href="#tabs-4">等级统计</a></li>
  28. </ul>
  29. <div id="tabs-1" class="tab">
  30. <iframe class="frame" src="modules/userguide.php"> </iframe>
  31. </div>
  32. <div id="tabs-2" class="tab">
  33. <iframe class="frame" src="modules/task.php" > </iframe>
  34. </div>
  35. <div id="tabs-3" class="tab">
  36. <iframe class="frame" src="modules/pay.php"></iframe>
  37. </div>
  38. <div id="tabs-4" class="tab">
  39. <iframe class="frame" src="modules/loselevel.php"></iframe>
  40. </div>
  41. </div>
  42. </body>
  43. </html>