install.aspx 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="install.aspx.cs" Inherits="CB.TVUCenter.Web.install" %>
  2. <%@ Register Src="~/Controls/Header.ascx" TagPrefix="u1" TagName="Header" %>
  3. <%@ Register Src="~/Controls/Footer.ascx" TagPrefix="u2" TagName="Footer" %>
  4. <!DOCTYPE html >
  5. <html>
  6. <head runat="server">
  7. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
  8. <title>安装教程</title>
  9. <meta name="description" content="看彩啦电视走势图,电视看彩,彩票走势图,看彩电视走势图APP下载,彩吧网,彩吧助手" />
  10. <meta name="keywords" content="看彩啦电视走势图官网,看彩啦首页" />
  11. <meta name="copyright" content="彩吧网(55125.cn)" />
  12. <link type="text/css" rel="stylesheet" href="css/style.css" />
  13. <script type="text/javascript" src="js/jquery.js"></script>
  14. <script type="text/javascript" src="js/function.js"></script>
  15. </head>
  16. <body>
  17. <u1:Header runat="server" ID="PageHeader" />
  18. <div class="bannerBox">
  19. <div class="banner">
  20. <div class="scrollImg">
  21. <ul>
  22. <li><a href="#"><img src="images/scrollImg-01.png" width="620" height="380" alt="" /></a></li>
  23. </ul>
  24. </div>
  25. <a href="#" target="_blank" class="downbtn"></a>
  26. </div>
  27. </div>
  28. <div class="subnav">
  29. <div class="sub">
  30. <h2><a class="blue" href="install.html">安装教程</a>&nbsp;&nbsp;&nbsp;&nbsp;/&nbsp;&nbsp;&nbsp;&nbsp;<a href="configure.html">配置教程</a></h2>
  31. </div>
  32. </div>
  33. <div class="content">
  34. <div class="cou_down">
  35. <div class="img"></div>
  36. </div>
  37. <div class="cou_usb">
  38. <div class="img"></div>
  39. </div>
  40. <div class="cou_setup">
  41. <div class="img"></div>
  42. </div>
  43. </div>
  44. <div class="question bg-gray">
  45. <div class="faq">
  46. <h2>常见问题</h2>
  47. <div class="faq-list">
  48. <ul id="faq-list">
  49. <%=TvQuestion.ToString() %>
  50. </ul>
  51. <div class="faq-more">
  52. <span class="faq-more-btn" id="faqMore">显示更多</span>
  53. </div>
  54. </div>
  55. <div class="faq-logo"></div>
  56. </div>
  57. </div>
  58. <script type="text/javascript">
  59. jQuery(document).ready(function () {
  60. showFaqContent();
  61. $("#faqMore").click(function () {
  62. var $this = $(this);
  63. var $list = $("#faq-list").children();
  64. if ($this.text() == "显示更多") {
  65. $this.text("收起");
  66. $list.each(function () { $(this).show(); });
  67. } else {
  68. $this.text("显示更多");
  69. for (var i = 4; i < $list.length; i++) {
  70. $list.eq(i).hide();
  71. }
  72. }
  73. });
  74. });
  75. var showFaqContent = function () {
  76. $("strong.faq-question").each(function (i) {
  77. $(this).click(function () {
  78. $("div.faq-answer").each(function (index) {
  79. if (i == index) {
  80. var $this = $(this);
  81. if ($this.css("display") == "none")
  82. { $this.show(); }
  83. else { $this.hide(); }
  84. } else {
  85. $(this).hide();
  86. }
  87. });
  88. });
  89. });
  90. }
  91. </script>
  92. <u2:Footer runat="server" ID="PageFooter" />
  93. </body>
  94. </html>