opencode_ssqjdkj.aspx 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="opencode_ssqjdkj.aspx.cs" Inherits="CB.Wap.column.opencode_ssqjdkj" %>
  2. <%@ Register src="/header.ascx" tagname="header" tagprefix="uc1" %>
  3. <%@ Register src="/footer.ascx" tagname="footer" TagPrefix="uc2" %>
  4. <!doctype html>
  5. <html>
  6. <head>
  7. <meta charset="utf-8">
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, minimum-scale=1.0, user-scalable=no">
  10. <meta name="apple-mobile-web-app-capable" content="yes">
  11. <!-- 允许全屏浏览-->
  12. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  13. <!--指定的iphone中safari顶端的状态条的样式;-->
  14. <meta name="format-detection" content="telephone=no">
  15. <!--强制要求手机竖屏显示-->
  16. <meta name="MobileOptimized" content="320" />
  17. <meta name="screen-orientation" content="portrait">
  18. <!--告诉设备忽略将页面中的数字识别为电话号码;-->
  19. <!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
  20. <meta http-equiv="cleartype" content="on">
  21. <meta content="telephone=no" name="format-detection" />
  22. <!-- tianlong add -->
  23. <title><%=pageTitle %></title>
  24. <meta name="description" content="<%=pageDescription %>" />
  25. <meta name="keywords" content="<%=pageKeyWords %>" />
  26. <link href="/static/css/base.css" rel="stylesheet"/>
  27. <link href="/static/css/specail.css" rel="stylesheet"/>
  28. <script type="text/javascript" src="/static/js/1.6-min-jquery.js"></script>
  29. <script type="text/javascript" src="/static/js/wap128.js"></script>
  30. </head>
  31. <body>
  32. <uc1:header ID="header1" runat="server" ColumnName="双色球几点开奖" />
  33. <div class="wrap">
  34. <div class="subnav">
  35. <%=columnNav%>
  36. </div>
  37. </div>
  38. <div class="kjsj">
  39. <ul class="time">
  40. <%=mes%>
  41. </ul>
  42. </div>
  43. <div class="his-lot">
  44. <div class="history">
  45. <h1>双色球近10期开奖号码</h1>
  46. <ul>
  47. <li class="num">期号</li>
  48. <li class="dates">开奖日期</li>
  49. <li class="ballbox">开奖号码</li>
  50. </ul>
  51. <%=Html %>
  52. </div>
  53. </div>
  54. <script type="text/javascript">
  55. $('.history').children('ul:even').attr('class', 'bg-grey');
  56. $(document).ready(function () { timeDisplay("refreshTime", <%=days %>, <%=hours %>, <%=minutes %>, <%=seconds %>); });
  57. var timeDisplay = function (obj, day, hour, minutes, seconds) {
  58. if (0 >= day && 0 >= day && 0 >= minutes && 0 >= seconds) {
  59. $("#" + obj).html("正在开奖中"); return;
  60. }
  61. var d = day, h = hour, m = minutes, s = seconds;
  62. s--;
  63. if (s < 0) {
  64. s = 59; m--;
  65. if (m < 0) {
  66. m = 59; h--;
  67. if (h < 0) {
  68. h = 23; d--;
  69. if (d < 0)
  70. { window.setTimeout("window.location='" + window.location.href + "';", 1000); }
  71. }
  72. }
  73. }
  74. $("#" + obj).html(d + "天" + h + "时" + m + "分" + s + "秒");
  75. window.setTimeout("timeDisplay('" + obj + "'," + d + "," + h + "," + m + "," + s + ")", 1000);
  76. }
  77. </script>
  78. <uc2:footer ID="footer1" runat="server" />
  79. </body>
  80. </html>