jQuery网页版html5五子棋游戏可设置难度

来源:https://www.sucaihuo.com/js/3128.html 2017-10-10 17:16浏览(3848) 收藏

jQuery网页版五子棋在线游戏代码是一款简单好玩的益智类网页五子棋小游戏可设置难度在线玩。
jQuery网页版html5五子棋游戏可设置难度
分类:html5 > canvas 难易:中级
查看演示 下载资源 下载积分: 30 积分
<fieldset data-role="controlgroup" data-theme="e" id="mode-select">
                <legend>Play with </legend>
                <input type="radio" name="radio-choice-1" id="radio-choice-1" value="vshuman" />
                <label for="radio-choice-1">
                    Human
                </label>
                <input type="radio" name="radio-choice-1" id="radio-choice-2" value="vscomputer" />
                <label for="radio-choice-2">
                    Computer
                </label>
            </fieldset>
            <fieldset data-role="controlgroup" data-theme="e" id="color-select" class="vs-computer">
                <legend>Your Color </legend>
                <input type="radio" name="radio-choice-1" id="radio-choice-2" value="black" data-theme="a" />
                <label for="radio-choice-2">
                    Black
                </label>
                <input type="radio" name="radio-choice-1" id="radio-choice-1" value="white" data-theme="c" />
                <label for="radio-choice-1">
                    White
                </label>
            </fieldset>
            <fieldset data-role="controlgroup" data-theme="e" id="level-select" class="vs-computer">
                <legend>Level Of Difficulty </legend>
                <input type="radio" name="radio-choice-1" id="radio-choice-1" value="novice" />
                <label for="radio-choice-1">
                    Novice
                </label>
                <input type="radio" name="radio-choice-1" id="radio-choice-2" value="medium" />
                <label for="radio-choice-2">
                    Medium
                </label>
                <input type="radio" name="radio-choice-1" id="radio-choice-3" value="expert" />
                <label for="radio-choice-3">
                    Expert
                </label>
            </fieldset>
            <fieldset class="ui-grid-a">
                <div class="ui-block-a">
                    <button type="submit" class="back-to-game" data-theme="c">
                        Back
                    </button>
                </div>
                <div class="ui-block-b">
                    <button type="submit" id="start-game" data-theme="b">
                        Start
                    </button>
                </div>
            </fieldset>
标签: 游戏五子棋
评论0
头像

系统已开启自动识别垃圾评论机制,识别到的自动封号,下载出错或者资源有问题请联系全栈客服QQ 1915635791

1 2