liveIndex.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!DOCTYPE html>
  2. <!-- saved from url=(0051)http://free.liaoningdoupo.com/static/liveIndex.html -->
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <title>中科在线</title>
  7. <link rel="stylesheet" type="text/css" href="css/style.css">
  8. <link rel="stylesheet" type="text/css" href="css/mubu2017.css">
  9. <link rel="stylesheet" type="text/css" href="css/iconfont.css">
  10. <script src="jquery-1.8.3.min.js" type="text/javascript" charset="utf-8"></script>
  11. </head>
  12. <styLe>
  13. div[data-v-de97bcec] a {
  14. color: #ff0;
  15. font-size: 16px;
  16. position: relative;
  17. top: 97px;
  18. left: -105px;
  19. }
  20. .mubu_title{
  21. position: fixed;
  22. top: 1%;
  23. z-index: 999;
  24. width: 100%;
  25. }
  26. .mubu_title span:first-child{
  27. color: #fffa93;
  28. text-align: center;
  29. font-size: 20px;
  30. text-shadow: 2px 2px 5px #000;
  31. float: left;
  32. width: 25%;
  33. text-align: center;
  34. padding: 10px 0;
  35. }
  36. .mubu_title span:last-child{
  37. color: #fffa93;
  38. text-align: center;
  39. font-size: 35px;
  40. text-shadow: 2px 2px 5px #000;
  41. float: left;
  42. width: 47%;
  43. padding: 30px 0;
  44. }
  45. </styLe>
  46. <body onload="getTitle()">
  47. <div class="mubu">
  48. <div class="mubu_main liveIndex">
  49. <div class="info">
  50. <div class="infoTwo">
  51. <div class="infoThree">
  52. <!-- <img src="./images/logo.png"> -->
  53. <p class="title" id="title"></p>
  54. <p>主办方:吉林省计算中心</p>
  55. <p>承办方:吉林省计算中心</p>
  56. <p>技术支持:长春市福瑞科技有限公司</p>
  57. <a class="childpage" onclick="btnDirect()">进入活动现场<i class="iconfont icon-bofang"></i></a>
  58. <br>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. <div class="yanhua2"></div>
  64. <div class="yanhua3"></div>
  65. <div class="yanhua4"></div>
  66. </div>
  67. <div class="mubu_left"></div>
  68. <div class="mubu_right"></div>
  69. <div class="mubu_top"></div>
  70. <div class='mubu_title'>
  71. <span>中科在线</span>
  72. <span>直播大厅</span>
  73. </div>
  74. </body>
  75. <script language="javascript">
  76. function btnDirect() {
  77. var query = window.location.search.substring(1);
  78. console.log(query);
  79. window.location.href = "../hall/direct?"+query
  80. }
  81. function GetQueryString(name) {
  82. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
  83. var r = window.location.search.substr(1).match(reg);
  84. if (r != null)
  85. return decodeURI(r[2]); //对参数进行decodeURI解码
  86. return null;
  87. }
  88. function getTitle() {
  89. document.getElementById('title').innerText= GetQueryString('title');
  90. }
  91. </script>
  92. </html>