hta 實(shí)現(xiàn)的五子棋界面
  更新時間:2014年09月10日 14:41:15   投稿:hebedich   
                        這篇文章主要介紹了hta 實(shí)現(xiàn)的五子棋界面,需要的朋友可以參考下
                        保存為 五子棋.hta,運(yùn)行即可看到效果
<html>
<title>五子棋界面 - zh159</title>
<hrad>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<HTA:APPLICATION
ID="MyhyliApp"
APPLICATIONNAME="五子棋界面 - zh159"
BORDER="thin"
BORDERSTYLE=""
VERSION="1.0"
SCROLL="no"
ICON="C:\WINDOWS\System32\wuauclt.exe"
INNERBORDER="no"
CONTEXTMENU="no"
CAPTION="yes"
MAXIMIZEBUTTON="no"
MINIMIZEBUTTON="yes"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="yes"
SYSMENU="yes"
WINDOWSTATE="normal"
NAVIGABLE="yes"
/>
</hrad>
<script language="javascript"></script>
<script language="VBScript"></script>
<style>
.GUIwh {width:24;height:24;cursor:hand;}
</style>
<body background="bg.gif" scroll="no" style="background: SteelBlue ;color:#ffffff;">
<table align="center" width="630" border="1" cellspacing="0" cellpadding="10" borderColor="#ffffff" style="font: 13px 宋體;border-collapse:collapse;">
 <tr align="center">
  <td width="450" height="450">
   <table border="0" cellspacing="0" cellpadding="0" borderColor="#ffffff" style="font: 21px 宋體;border:2px solid #ffffff;">
    <script language="VBScript">
    str = "ABCDEFGHIJKLMNOPQRS"
    For i = 1 To Len(str)
        with document
        .write "<tr align='center'>"
        For n = 1 To Len(str)
            stri = MID(str,i,1)
            strn = MID(str,n,1)
            tdstr = "<td id='GUI_" & strn & stri & "' class='GUIwh'><span onclick='Test(this)' onMouseOver='innerText=""●"";style.color=""blue""' onMouseOut='innerText=""┼"";style.color=""""'>┼</span></td>"
            s = "┼"
            If (stri = "A" and strn = "A") Then .write Replace(tdstr,s,"┌")
            If stri = "A" Then If not (strn = "A" or strn = "S") Then .write Replace(tdstr,s,"┬")
            If (stri = "A" and strn = "S") Then .write Replace(tdstr,s,"┐")
            If not (stri = "A" or stri = "S") Then If strn = "A" Then .write Replace(tdstr,s,"├")
            If not (stri = "A" or stri = "S" or strn = "A" or strn = "S") Then .write tdstr
            If not (stri = "A" or stri = "S") Then If strn = "S" Then .write Replace(tdstr,s,"┤")
            
            If (stri = "S" and strn = "A") Then .write Replace(tdstr,s,"└")
            If stri = "S" Then If not (strn = "A" or strn = "S") Then .write Replace(tdstr,s,"┴")
            If (stri = "S" and strn = "S") Then .write Replace(tdstr,s,"┘")
        Next
        .write "</tr>"
        end with
    Next
    </script>
   </table>
  </td>
  <td>
   <span id="PC"><button>電腦先下</button><br><br>直接點(diǎn)擊為玩家先下</span>
  </td>
 </tr>
</table>
</body>
<script language="VBScript">
 width = 660
 height = 550
 window.resizeTo width, height
 ileft=(window.screen.width-width)/2
 itop=(window.screen.height-height)/2
 window.moveTo ileft,itop
    Sub Test(this)
this.parentNode.style.cursor = "default"
this.parentNode.innerHtml = "●"
PC.style.display = "none"
    End Sub
    Sub Title
Document.title = "五子棋 - zh159 - " & FormatDateTime(Now, 1) & " " & WeekdayName(WeekDay(now)) & " " & FormatDateTime(Now, 3)
    End Sub
Title:setInterval "Title()",500
</script>
</html>
                                您可能感興趣的文章:
                        - 純JS實(shí)現(xiàn)五子棋游戲兼容各瀏覽器(附源碼)
 - 基于C語言實(shí)現(xiàn)五子棋游戲完整實(shí)例代碼
 - 純C語言實(shí)現(xiàn)五子棋
 - C++面向?qū)ο髮?shí)現(xiàn)五子棋小游戲
 - java實(shí)現(xiàn)五子棋小游戲
 - java基于swing實(shí)現(xiàn)的五子棋游戲代碼
 - Javascript和HTML5利用canvas構(gòu)建Web五子棋游戲?qū)崿F(xiàn)算法
 - VC實(shí)現(xiàn)五子棋游戲的一個算法示例
 - jQuery實(shí)現(xiàn)的五子棋游戲?qū)嵗?/a>
 - IOS游戲開發(fā)之五子棋OC版
 
相關(guān)文章
 exe轉(zhuǎn)換16進(jìn)制的html保存的hta實(shí)現(xiàn)代碼
用下面這個hta文件來轉(zhuǎn)exe變成16進(jìn)制的html保存了。這樣也會方便一點(diǎn)。2009-07-07
 用hta實(shí)現(xiàn)制作的無殤 - 快書V1.1打包下載了
用hta實(shí)現(xiàn)制作的無殤 - 快書V1.1打包下載了...2007-11-11
 NCC Tools(never code counter tools) V1.0.1發(fā)布代碼-代碼統(tǒng)計(jì)工具
NCC Tools(never code counter tools) V1.0.1發(fā)布代碼-代碼統(tǒng)計(jì)工具...2006-07-07
 ScriptomaticV2.hta學(xué)習(xí)腳本好工具
ScriptomaticV2.hta學(xué)習(xí)腳本好工具,來自微軟官方的東西,學(xué)習(xí)hta的朋友要收藏下。2007-01-01

