123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="opencode_dltjdkj.aspx.cs" Inherits="CB.Wap.column.opencode_dltjdkj" %>
- <%@ Register src="/header.ascx" tagname="header" tagprefix="uc1" %>
- <%@ Register src="/footer.ascx" tagname="footer" TagPrefix="uc2" %>
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, minimum-scale=1.0, user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <!-- 允许全屏浏览-->
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <!--指定的iphone中safari顶端的状态条的样式;-->
- <meta name="format-detection" content="telephone=no">
- <!--强制要求手机竖屏显示-->
- <meta name="MobileOptimized" content="320" />
- <meta name="screen-orientation" content="portrait">
- <!--告诉设备忽略将页面中的数字识别为电话号码;-->
- <!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
- <meta http-equiv="cleartype" content="on">
- <meta content="telephone=no" name="format-detection" />
- <!-- tianlong add -->
- <title><%=pageTitle %></title>
- <meta name="description" content="<%=pageDescription %>" />
- <meta name="keywords" content="<%=pageKeyWords %>" />
- <link href="/static/css/base.css" rel="stylesheet"/>
- <link href="/static/css/specail.css" rel="stylesheet"/>
- <script type="text/javascript" src="/static/js/1.6-min-jquery.js"></script>
- <script type="text/javascript" src="/static/js/wap128.js"></script>
- </head>
- <body>
- <uc1:header ID="header1" runat="server" ColumnName="大乐透几点开奖" />
- <div class="wrap">
- <div class="subnav">
- <%=columnNav%>
- </div>
- </div>
- <div class="kjsj">
- <ul class="time">
- <%=mes%>
- </ul>
- </div>
- <div class="his-lot">
-
- <div class="history">
- <h1>大乐透近10期开奖号码</h1>
- <ul>
- <li class="num">期号</li>
- <li class="dates">开奖日期</li>
- <li class="ballbox">开奖号码</li>
- </ul>
- <%=Html %>
- </div>
- </div>
- <script type="text/javascript">
- $('.history').children('ul:even').attr('class', 'bg-grey');
- $(document).ready(function () { timeDisplay("refreshTime", <%=days %>, <%=hours %>, <%=minutes %>, <%=seconds %>); });
- var timeDisplay = function (obj, day, hour, minutes, seconds) {
- if (0 >= day && 0 >= day && 0 >= minutes && 0 >= seconds) {
- $("#" + obj).html("正在开奖中"); return;
- }
- var d = day, h = hour, m = minutes, s = seconds;
- s--;
- if (s < 0) {
- s = 59; m--;
- if (m < 0) {
- m = 59; h--;
- if (h < 0) {
- h = 23; d--;
- if (d < 0)
- { window.setTimeout("window.location='" + window.location.href + "';", 1000); }
- }
- }
- }
- $("#" + obj).html(d + "天" + h + "时" + m + "分" + s + "秒");
- window.setTimeout("timeDisplay('" + obj + "'," + d + "," + h + "," + m + "," + s + ")", 1000);
- }
- </script>
- <uc2:footer ID="footer1" runat="server" />
- </body>
- </html>
|