time.html 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport"
  6. content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta name="renderer" content="webkit" />
  9. <meta name="robots" content="index, follow" />
  10. <meta name="keywords" content="" />
  11. <meta name="description" content="" />
  12. <link rel="stylesheet" type="text/css" href="../css/font-awesome.css" media="screen" />
  13. <link rel="stylesheet" type="text/css" href="../css/bootstrap.css" media="screen" />
  14. <link rel="stylesheet" type="text/css" href="../css/owl.carousel.css" media="screen" />
  15. <!--<link rel="stylesheet" type="text/css" href="../css/jquery.bxslider.css"
  16. media="screen"/>
  17. -->
  18. <link rel="stylesheet" type="text/css" href="../css/magnific-popup.css" media="screen" />
  19. <link rel="stylesheet" type="text/css" href="../css/animate.css" media="screen" />
  20. <link rel="stylesheet" type="text/css" href="../css/settings.css" media="screen" />
  21. <link rel="stylesheet" type="text/css" href="../css/style-red.css" media="screen" />
  22. <link rel="stylesheet" type="text/css" href="../css/tk.css" media="screen" />
  23. <style>
  24. @import url(../css/time/time.css?family=Fira+Sans:200,400,500);
  25. * {
  26. border: 0;
  27. margin: 0;
  28. padding: 0;
  29. }
  30. html {
  31. height: 100%;
  32. }
  33. body {
  34. height: inherit;
  35. display: flex;
  36. flex-direction: column;
  37. font-family: "Fira Sans", sans-serif;
  38. -webkit-font-smoothing: antialiased;
  39. -moz-osx-font-smoothing: grayscale;
  40. color: #79838c;
  41. }
  42. a {
  43. color: #50585f;
  44. text-decoration: none;
  45. }
  46. a:hover {
  47. color: #383e44;
  48. }
  49. div.containerTime {
  50. display: flex;
  51. flex: auto;
  52. flex-direction: column;
  53. max-height: 100%;
  54. }
  55. div.header {
  56. height: auto;
  57. text-align: center;
  58. background: slategrey;
  59. color: ghostwhite;
  60. padding: 2.3rem 1rem 2.3rem 1rem;
  61. position: relative;
  62. }
  63. div.header:after {
  64. content: "";
  65. position: absolute;
  66. bottom: -5rem;
  67. left: 0rem;
  68. height: 5.1rem;
  69. display: block;
  70. width: 100%;
  71. z-index: 300;
  72. background: -moz-linear-gradient(top, white 20%, rgba(255, 255, 255, 0) 100%);
  73. /* FF3.6-15 */
  74. background: -webkit-linear-gradient(top, white 20%, rgba(255, 255, 255, 0) 100%);
  75. /* Chrome10-25,Safari5.1-6 */
  76. background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0) 100%);
  77. /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  78. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#00ffffff", GradientType=0);
  79. /* IE6-9 */
  80. }
  81. div.header h1 {
  82. margin-top: 0.8rem;
  83. margin-bottom: 0.5rem;
  84. font-weight: 200;
  85. font-size: 1.6em;
  86. letter-spacing: 0.1rem;
  87. text-transform: uppercase;
  88. }
  89. @media (min-width: 62em) {
  90. div.header h1 {
  91. font-size: 1.9em;
  92. letter-spacing: 0.2rem;
  93. }
  94. }
  95. div.header h2 {
  96. font-size: 1.1em;
  97. font-weight: 400;
  98. color: #cfd7de;
  99. max-width: 30rem;
  100. margin: auto;
  101. }
  102. div.item {
  103. display: flex;
  104. flex: auto;
  105. overflow-y: auto;
  106. padding: 0rem 1rem 0rem 1rem;
  107. }
  108. #timeline {
  109. position: relative;
  110. display: table;
  111. height: 100%;
  112. margin-left: auto;
  113. margin-right: auto;
  114. margin-top: 5rem;
  115. }
  116. #timeline div:after {
  117. content: "";
  118. width: 2px;
  119. position: absolute;
  120. top: 0.5rem;
  121. bottom: 0rem;
  122. left: 60px;
  123. z-index: 1;
  124. background: #C5C5C5;
  125. }
  126. #timeline h3 {
  127. position: -webkit-sticky;
  128. position: sticky;
  129. top: 5rem;
  130. color: #888;
  131. margin: 0;
  132. font-size: 1em;
  133. font-weight: 400;
  134. line-height: 1.0;
  135. }
  136. @media (min-width: 62em) {
  137. #timeline h3 {
  138. font-size: 1.1em;
  139. }
  140. }
  141. #timeline section.year {
  142. position: relative;
  143. }
  144. #timeline section.year:first-child section {
  145. margin-top: -1.3em;
  146. padding-bottom: 0px;
  147. }
  148. #timeline section.year section {
  149. position: relative;
  150. padding-bottom: 1.25em;
  151. margin-bottom: 2.2em;
  152. }
  153. #timeline section.year section h4 {
  154. position: absolute;
  155. bottom: 0;
  156. font-size: 0.9em;
  157. font-weight: 400;
  158. line-height: 1.2em;
  159. margin: 0;
  160. padding: 0 0 0 89px;
  161. color: #C5C5C5;
  162. }
  163. @media (min-width: 62em) {
  164. #timeline section.year section h4 {
  165. font-size: 1em;
  166. }
  167. }
  168. #timeline section.year section ul {
  169. list-style-type: none;
  170. padding: 0 0 0 75px;
  171. margin: -1.35rem 0 1em;
  172. /* max-width: 32rem; */
  173. font-size: 1em;
  174. }
  175. @media (min-width: 62em) {
  176. #timeline section.year section ul {
  177. font-size: 1.1em;
  178. padding: 0 0 0 81px;
  179. }
  180. }
  181. #timeline section.year section ul:last-child {
  182. margin-bottom: 0;
  183. }
  184. #timeline section.year section ul:first-of-type:after {
  185. content: "";
  186. width: 10px;
  187. height: 10px;
  188. background: #C5C5C5;
  189. border: 2px solid #FFFFFF;
  190. -webkit-border-radius: 50%;
  191. -moz-border-radius: 50%;
  192. -ms-border-radius: 50%;
  193. border-radius: 50%;
  194. position: absolute;
  195. left: 54px;
  196. top: 3px;
  197. z-index: 2;
  198. box-sizing: unset;
  199. }
  200. #timeline section.year section ul li {
  201. margin-left: 0.5rem;
  202. }
  203. #timeline section.year section ul li:before {
  204. margin-left: -0.5rem;
  205. padding-right: 0.3rem;
  206. }
  207. #timeline section.year section ul li:not(:first-child) {
  208. margin-top: 0.5rem;
  209. }
  210. #timeline section.year section ul li span.price {
  211. color: mediumturquoise;
  212. font-weight: 500;
  213. }
  214. .usd {
  215. display: inline;
  216. }
  217. svg {
  218. border: 3px solid white;
  219. border-radius: 50%;
  220. box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  221. }
  222. </style>
  223. <script type="text/javascript" src="../js/jquery.min.js">
  224. </script>
  225. <script type="text/javascript" src="../js/jquery.migrate.js">
  226. </script>
  227. <script type="text/javascript" src="../js/bootstrap.js">
  228. </script>
  229. <script type="text/javascript" src="../js/owl.carousel.min.js">
  230. </script>
  231. <script>
  232. var currency = "BTC";
  233. </script>
  234. <!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at
  235. the end of file. -->
  236. <!--[if lt IE 9]>
  237. <script src="../js/html5.js">
  238. </script>
  239. <script src="../js/respond.min.js">
  240. </script>
  241. <style>
  242. article,aside,dialog,footer,header,section,nav,figure,menu{display:block;padding:0;margin:0;}
  243. </style>
  244. <link rel="stylesheet" href="../css/ie.css" type="text/css" media="screen"
  245. />
  246. <![endif]-->
  247. <!--[if lte IE 9]>
  248. <script src="../js/jquery.placeholder.js">
  249. </script>
  250. <script>
  251. jQuery(document).ready(function($) {
  252. $('input, textarea').placeholder();
  253. });
  254. </script>
  255. <script type="text/javascript" src="../js/pie.js">
  256. </script>
  257. <script type="text/javascript">
  258. jQuery(document).ready(function($) {
  259. $('.indexci img').each(function() {
  260. PIE.attach(this);
  261. });
  262. });
  263. </script>
  264. <![endif]-->
  265. <!--[if (gte IE 6)&(lte IE 8)]>
  266. <script type="text/javascript" src="../js/ie8-eventlistener.js">
  267. </script>
  268. <script type="text/javascript" src="../js/selectivizr.js">
  269. </script>
  270. <script type="text/javascript" src="../js/excanvas.compiled.js">
  271. </script>
  272. <![endif]-->
  273. <link rel="icon" href="favicon.ico">
  274. <title>
  275. 荆鹏集团
  276. </title>
  277. </head>
  278. <body>
  279. <!--[if lt IE 8]>
  280. <div class="lt-ie8-bg">
  281. <p class="browsehappy">
  282. You are using an
  283. <strong>
  284. outdated
  285. </strong>
  286. browser.
  287. </p>
  288. <p>
  289. Please
  290. <a ​>
  291. upgrade your browser
  292. </a>
  293. to improve your experience.
  294. </p>
  295. <p class="browsehappy">
  296. 对不起,您正在使用的是
  297. <strong>
  298. 过时
  299. </strong>
  300. 的浏览器.
  301. </p>
  302. <p>
  303. 请升级您的浏览器(IE8+,或者是火狐、谷歌、Opera、Safari等现代浏览器),以改进您的用户体验!
  304. </p>
  305. </div>
  306. <style>
  307. .lt-ie8-bg{z-index:11111;position:absolute;top:0;left:0;right:0;bottom:0;background-color:#333;color:#999;padding:100px
  308. 20px;text-align:center;font-size:26px} .lt-ie8-bg a{color:#f5f5f5;border-bottom:2px
  309. solid #fff} .lt-ie8-bg a:hover{text-decoration:none} #container{display:none;}
  310. </style>
  311. <![endif]-->
  312. <div id="container">
  313. <div id="head"></div>
  314. <script>
  315. $("#head").load("common/head.html");
  316. //公共属性
  317. $(function() {
  318. getData();
  319. function getData() {
  320. console.log(Constant)
  321. $.post(Constant.serverUrl + "api/mhdata/getList", {
  322. code: Constant.query.jpcode,
  323. id: Constant.query.id,
  324. pageSize: 500,
  325. isdetails: 1
  326. }, function(data, status) {
  327. $(".data-title").text(data.data.dic.name)
  328. $(".data-title").attr("href", data.data.dic.extended3 + "?jpcode=" + data.data.dic
  329. .value)
  330. var list = data.data.data.data;
  331. var rowList = []
  332. for (var i in list) {
  333. var row = {
  334. title: list[i].title,
  335. list: []
  336. }
  337. console.log(list[i].content)
  338. console.log($(list[i].content))
  339. $(list[i].content).each(function() {
  340. var c = $(this).text()
  341. if (c != '\n') {
  342. row.list.push(c)
  343. }
  344. })
  345. rowList.push(row);
  346. }
  347. rowList.sort((a, b) => {
  348. var n1 = Number(a.title)
  349. var n2 = Number(b.title)
  350. if (!isNaN(n1) && !isNaN(n2)) {
  351. return n1 - n2;
  352. } else // 字符
  353. {
  354. return true
  355. }
  356. })
  357. console.log(rowList)
  358. $("#portfolio-temp").tmpl(rowList).prependTo(".data-portfolio")
  359. })
  360. }
  361. })
  362. </script>
  363. <div class="breadcrumb-wrapper">
  364. <div class="container">
  365. <div class="row">
  366. <div class="col-md-3 col-sm-4 bcid-cat data-title">
  367. </div>
  368. <div class="col-md-9 col-sm-8 location">
  369. <i class="fa fa-map-marker">
  370. </i>
  371. &nbsp;
  372. <span>
  373. 当前位置:
  374. <a href="index.html">
  375. 网站首页
  376. </a>
  377. &gt
  378. <a ​ class="data-title">
  379. </a>
  380. </span>
  381. </div>
  382. </div>
  383. </div>
  384. </div>
  385. <script type="text/text/x-jquery-tmpl" id="portfolio-temp">
  386. <section class="year">
  387. <h3>${title}</h3>
  388. {{each(i,item) list}}
  389. <section>
  390. <ul>
  391. <li>${item}</li>
  392. </ul>
  393. </section>
  394. {{/each}}
  395. </section>
  396. </script>
  397. <div class="page-container" id="innerpage-wrap">
  398. <div class="container">
  399. <div class="row">
  400. <div class="main col-md-9 inner-left" role="main">
  401. <div class="about-page-wrap">
  402. <div class="com-cnt page-content">
  403. <div class="containerTime">
  404. <div class="item">
  405. <div id="timeline">
  406. <div class="data-portfolio">
  407. </div>
  408. </div>
  409. </div>
  410. </div>
  411. <div id="pages" class="page">
  412. </div>
  413. </div>
  414. </div>
  415. </div>
  416. <div id="sidebar"></div>
  417. <script>
  418. $("#sidebar").load("common/sidebar.html");
  419. </script>
  420. </div>
  421. </div>
  422. </div>
  423. <div class="for-bottom-padding">
  424. </div>
  425. <div id="food"></div>
  426. <script>
  427. $("#food").load("common/foot.html")
  428. </script>
  429. </div>
  430. <!--<script type="text/javascript" src="../js/jquery.bxslider.min.js"></script>
  431. <script type="text/javascript" src="../js/jquery.countto.js"></script>-->
  432. <script type="text/javascript" src="../js/jquery.magnific-popup.min.js">
  433. </script>
  434. <script type="text/javascript" src="../js/jquery.appear.js">
  435. </script>
  436. <script type="text/javascript" src="../js/jquery.imagesloaded.min.js">
  437. </script>
  438. <script type="text/javascript" src="../js/jquery.isotope.min.js">
  439. </script>
  440. <script type="text/javascript" src="../js/retina-1.1.0.min.js">
  441. </script>
  442. <script type="text/javascript" src="../js/plugins-scroll.js">
  443. </script>
  444. <script type="text/javascript" src="../js/waypoint.min.js">
  445. </script>
  446. <script type="text/javascript" src="../js/jquery.themepunch.tools.min.js">
  447. </script>
  448. <script type="text/javascript" src="../js/jquery.themepunch.revolution.min.js">
  449. </script>
  450. <script type="text/javascript" src="../js/script.js">
  451. </script>
  452. <script>
  453. var Speed_1 = 10; //速度(毫秒)
  454. var Space_1 = 20; //每次移动(px)
  455. if (document.documentElement.clientWidth > 1500) {
  456. var PageWidth_1 = 366 * 1; //翻页宽度
  457. } else if (document.documentElement.clientWidth > 1150) {
  458. var PageWidth_1 = 326 * 1; //翻页宽度
  459. } else {
  460. var PageWidth_1 = 366 * 1; //翻页宽度
  461. }
  462. var interval_1 = 3000; //翻页间隔时间
  463. var fill_1 = 0; //整体移位
  464. var MoveLock_1 = false;
  465. var MoveTimeObj_1;
  466. var MoveWay_1 = "right";
  467. var Comp_1 = 0;
  468. var AutoPlayObj_1 = null;
  469. function GetObj(objName) {
  470. if (document.getElementById) {
  471. return eval('document.getElementById("' + objName + '")')
  472. } else {
  473. return eval('document.all.' + objName)
  474. }
  475. }
  476. function AutoPlay_1() {
  477. clearInterval(AutoPlayObj_1);
  478. AutoPlayObj_1 = setInterval('ISL_GoDown_1();ISL_StopDown_1();', interval_1)
  479. }
  480. function ISL_GoUp_1() {
  481. if (MoveLock_1) return;
  482. clearInterval(AutoPlayObj_1);
  483. MoveLock_1 = true;
  484. MoveWay_1 = "left";
  485. MoveTimeObj_1 = setInterval('ISL_ScrUp_1();', Speed_1);
  486. }
  487. function ISL_StopUp_1() {
  488. if (MoveWay_1 == "right") {
  489. return
  490. };
  491. clearInterval(MoveTimeObj_1);
  492. if ((GetObj('ISL_Cont_11').scrollLeft - fill_1) % PageWidth_1 != 0) {
  493. Comp_1 = fill_1 - (GetObj('ISL_Cont_11').scrollLeft % PageWidth_1);
  494. CompScr_1()
  495. } else {
  496. MoveLock_1 = false
  497. }
  498. AutoPlay_1()
  499. }
  500. function ISL_ScrUp_1() {
  501. if (GetObj('ISL_Cont_11').scrollLeft <= 0) {
  502. GetObj('ISL_Cont_11').scrollLeft = GetObj('ISL_Cont_11').scrollLeft + GetObj('List1_1').offsetWidth
  503. }
  504. GetObj('ISL_Cont_11').scrollLeft -= Space_1
  505. }
  506. function ISL_GoDown_1() {
  507. clearInterval(MoveTimeObj_1);
  508. if (MoveLock_1) return;
  509. clearInterval(AutoPlayObj_1);
  510. MoveLock_1 = true;
  511. MoveWay_1 = "right";
  512. ISL_ScrDown_1();
  513. MoveTimeObj_1 = setInterval('ISL_ScrDown_1()', Speed_1)
  514. }
  515. function ISL_StopDown_1() {
  516. if (MoveWay_1 == "left") {
  517. return
  518. };
  519. clearInterval(MoveTimeObj_1);
  520. if (GetObj('ISL_Cont_11').scrollLeft % PageWidth_1 - (fill_1 >= 0 ? fill_1 : fill_1 + 1) != 0) {
  521. Comp_1 = PageWidth_1 - GetObj('ISL_Cont_11').scrollLeft % PageWidth_1 + fill_1;
  522. CompScr_1()
  523. } else {
  524. MoveLock_1 = false
  525. }
  526. AutoPlay_1()
  527. }
  528. function ISL_ScrDown_1() {
  529. if (GetObj('ISL_Cont_11').scrollLeft >= GetObj('List1_1').scrollWidth) {
  530. GetObj('ISL_Cont_11').scrollLeft = GetObj('ISL_Cont_11').scrollLeft - GetObj('List1_1').scrollWidth
  531. }
  532. GetObj('ISL_Cont_11').scrollLeft += Space_1
  533. }
  534. function CompScr_1() {
  535. if (Comp_1 == 0) {
  536. MoveLock_1 = false;
  537. return
  538. }
  539. var num, TempSpeed = Speed_1,
  540. TempSpace = Space_1;
  541. if (Math.abs(Comp_1) < PageWidth_1 / 2) {
  542. TempSpace = Math.round(Math.abs(Comp_1 / Space_1));
  543. if (TempSpace < 1) {
  544. TempSpace = 1
  545. }
  546. }
  547. if (Comp_1 < 0) {
  548. if (Comp_1 < -TempSpace) {
  549. Comp_1 += TempSpace;
  550. num = TempSpace
  551. } else {
  552. num = -Comp_1;
  553. Comp_1 = 0
  554. }
  555. GetObj('ISL_Cont_11').scrollLeft -= num;
  556. setTimeout('CompScr_1()', TempSpeed)
  557. } else {
  558. if (Comp_1 > TempSpace) {
  559. Comp_1 -= TempSpace;
  560. num = TempSpace
  561. } else {
  562. num = Comp_1;
  563. Comp_1 = 0
  564. }
  565. GetObj('ISL_Cont_11').scrollLeft += num;
  566. setTimeout('CompScr_1()', TempSpeed)
  567. }
  568. }
  569. function picrun_ini() {
  570. GetObj("List2_1").innerHTML = GetObj("List1_1").innerHTML;
  571. GetObj('ISL_Cont_11').scrollLeft = fill_1 >= 0 ? fill_1 : GetObj('List1_1').scrollWidth - Math.abs(fill_1);
  572. GetObj("ISL_Cont_11").onmouseover = function() {
  573. clearInterval(AutoPlayObj_1)
  574. }
  575. GetObj("ISL_Cont_11").onmouseout = function() {
  576. AutoPlay_1()
  577. }
  578. AutoPlay_1();
  579. }
  580. </script>
  581. </body>
  582. </html>