index.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?php
  2. for ($i=0; $i < 4; $i++) {
  3. $items[$i] = json_decode(file_get_contents("data/item".$i.".txt"));
  4. }
  5. ?>
  6. <!doctype html>
  7. <html class="no-js">
  8. <head>
  9. <meta charset="utf-8">
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11. <meta name="description" content="">
  12. <meta name="keywords" content="">
  13. <meta name="viewport" content="width=device-width, initial-scale=1">
  14. <title>软件云集- 追风逐雨</title>
  15. <!-- Set render engine for 360 browser -->
  16. <meta name="renderer" content="webkit">
  17. <!-- No Baidu Siteapp-->
  18. <meta http-equiv="Cache-Control" content="no-siteapp"/>
  19. <link rel="icon" type="image/png" href="assets/i/favicon.png">
  20. <!-- Add to homescreen for Chrome on Android -->
  21. <meta name="mobile-web-app-capable" content="yes">
  22. <link rel="icon" sizes="192x192" href="assets/i/app-icon72x72@2x.png">
  23. <!-- Add to homescreen for Safari on iOS -->
  24. <meta name="apple-mobile-web-app-capable" content="yes">
  25. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  26. <meta name="apple-mobile-web-app-title" content="Amaze UI"/>
  27. <link rel="apple-touch-icon-precomposed" href="assets/i/app-icon72x72@2x.png">
  28. <!-- Tile icon for Win8 (144x144 + tile color) -->
  29. <meta name="msapplication-TileImage" content="assets/i/app-icon72x72@2x.png">
  30. <meta name="msapplication-TileColor" content="#0e90d2">
  31. <!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
  32. <!--
  33. <link rel="canonical" href="http://www.example.com/">
  34. -->
  35. <link rel="stylesheet" href="assets/css/amazeui.min.css">
  36. <link rel="stylesheet" href="assets/css/app.css">
  37. <link rel="stylesheet" href="assets/css/amazeui.datatables.min.css">
  38. </head>
  39. <body>
  40. <!--[if lte IE 9]>
  41. <p class="browsehappy">你正在使用<strong>过时</strong>的浏览器,Amaze UI 暂不支持。 请 <a
  42. href="http://browsehappy.com/" target="_blank">升级浏览器</a>
  43. 以获得更好的体验!</p>
  44. <![endif]-->
  45. <!-- 页面内容开始-->
  46. <header data-am-widget="header" class="am-header am-header-default" data-am-sticky>
  47. <div class="am-header-left am-header-nav">
  48. <a href="#left-link" class="" data-am-offcanvas="{target: '#left-link', effect: 'push'}">
  49. <i class="am-header-icon am-icon-bars"></i>
  50. </a>
  51. </div>
  52. <h1 class="am-header-title">
  53. <a href="#title-link" class="">
  54. 软件云集
  55. </a>
  56. </h1>
  57. <div class="am-header-right am-header-nav">
  58. <a href="/" class="">
  59. <i class="am-header-icon am-icon-home"></i>
  60. </a>
  61. </div>
  62. </header>
  63. <div id="left-link" class="am-offcanvas">
  64. <div class="am-offcanvas-bar">
  65. <div class="am-offcanvas-content">
  66. <p>
  67. 这是追风逐雨博主自用软件的集合<br/>
  68. 初衷只为方便博主<br/>
  69. 以后如何以后再说
  70. </p>
  71. </div>
  72. </div>
  73. </div>
  74. <div data-am-widget="tabs" class="am-tabs am-tabs-default">
  75. <ul class="am-tabs-nav am-cf">
  76. <?php for ($i = 0; $i < count($items); $i++) { ?>
  77. <li class="<?php if($i==0) {echo 'am-active'; } ?>"><a href="[data-tab-panel-<?php echo $i ?>]"><?php echo $items[$i]->title; ?></a></li>
  78. <?php } ?>
  79. </ul>
  80. <div class="am-tabs-bd">
  81. <?php for ($i = 0; $i < count($items); $i++) { ?>
  82. <div data-tab-panel-<?php echo $i ?> class="am-tab-panel <?php if($i==0) {echo 'am-active'; } ?>">
  83. <table width="100%" class="am-table am-table-striped am-table-bordered am-table-compact am-text-nowrap" id="<?php echo $items[$i]->title; ?>">
  84. <thead>
  85. <tr>
  86. <th>软件名称</th>
  87. <th>日期</th>
  88. <th>分类</th>
  89. <th>介绍</th>
  90. <th>下载</th>
  91. </tr>
  92. </thead>
  93. <tbody>
  94. <?php foreach ($items[$i]->data as $key) { ?>
  95. <tr>
  96. <td><?php echo $key->name; ?></td>
  97. <td class="center"><?php echo $key->times; ?></td>
  98. <td><?php echo $key->type; ?></td>
  99. <td><?php echo $key->body; ?></td>
  100. <td class="center">
  101. <?php if(isset($key->url->baidu) && $key->url->baidu != '') { ?>
  102. <a href="<?php echo $key->url->baidu; ?>" class="am-btn am-btn-success am-radius am-btn-xs"><i class="am-icon-cloud-download"></i> 百度网盘</a>
  103. <?php } ?>
  104. <?php if(isset($key->url->s360) && $key->url->s360 != '') { ?>
  105. <a href="<?php echo $key->url->s360; ?>" class="am-btn am-btn-success am-radius am-btn-xs"><i class="am-icon-cloud-download"></i> 360网盘</a>
  106. <?php } ?>
  107. <?php if(isset($key->url->local) && $key->url->local != '') { ?>
  108. <a href="<?php echo $key->url->local; ?>" class="am-btn am-btn-warning am-radius am-btn-xs"><i class="am-icon-download"></i> 本地下载</a>
  109. <?php } ?>
  110. </td>
  111. </tr>
  112. <?php } ?>
  113. </tbody>
  114. </table>
  115. </div>
  116. <?php } ?>
  117. </div>
  118. </div>
  119. <!-- 页面内容结束-->
  120. <!--[if lt IE 9]>
  121. <script src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
  122. <script src="http://cdn.staticfile.org/modernizr/2.8.3/modernizr.js"></script>
  123. <script src="assets/js/amazeui.ie8polyfill.min.js"></script>
  124. <![endif]-->
  125. <!--[if (gte IE 9)|!(IE)]><!-->
  126. <script src="assets/js/jquery.min.js"></script>
  127. <!--<![endif]-->
  128. <script src="assets/js/amazeui.min.js"></script>
  129. <script src="assets/js/amazeui.datatables.min.js"></script>
  130. <script src="assets/js/dataTables.responsive.min.js"></script>
  131. <script>
  132. jQuery.extend(jQuery.fn.dataTableExt.oSort, {
  133. "chinese-string-asc": function (s1, s2) {
  134. return s1.localeCompare(s2);
  135. },
  136. "chinese-string-desc": function (s1, s2) {
  137. return s2.localeCompare(s1);
  138. }
  139. });
  140. //$('#example').DataTable();
  141. $('<?php for ($i = 0; $i < count($items); $i++) { echo ($i==0) ? '#'.$items[$i]->title : ', #'.$items[$i]->title; }?>').DataTable({
  142. responsive: true,
  143. paging: false,
  144. dom: 't',
  145. order: [[1, 'desc'], [2, 'asc']],
  146. columnDefs: [
  147. {type: 'chinese-string', targets: '2'},
  148. {targets: [0,3,4], orderable: false}
  149. //{targets: 2, visible: false}
  150. ]
  151. });
  152. $(function () {
  153. $('#download-tabs').tabs();
  154. })
  155. </script>
  156. </body>
  157. </html>