Newer
Older
2022-kodama / kadai.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <script type="text/javascript" src="kadai.js" charset="utf-8"></script>
    <title>Document</title>
</head>
<body>
    <h1><クリックの達人></h1>
    <p id="counter">0</p>
    <p><input type="button" id="btnAdd" value="+"></p>

    <h2>追加機能</h2>
    <p id="shopping">0</p>
    <p><input type="button" id="timesAdd2" value="2倍ボタン"></p>
    <p><input type="button" id="timesAdd3" value="3倍ボタン"></p>
    <p><input type="button" id="timesAdd4" value="4倍ボタン"></p>
    <p><input type="button" id="timesAdd5" value="5倍ボタン"></p>
    <p><input type="button" id="timesAdd" value="ボーナス!"></p>

    <h3>説明</h3>
    <p>一定の数で称号を獲得することができます。</p>
    <p>追加機能は上から100以上、400以上、800以上、1500以上からご使用頂けます。</p>
    <p>ボーナスは1000を超えると獲得できます</p>

    <table border="1">
        <tr>
            <th>数</th>
            <th>称号</th>
        </tr>
        <tr>
            <th>10</th>
            <th>初心者クリッカー</th>
        </tr>
        <tr>
            <th>100</th>
            <th>中級者クリッカー</th>
        </tr>
        <tr>
            <th>500</th>
            <th>上級者クリッカー</th>
        </tr>
        <tr>
            <th>2000</th>
            <th>名人クリッカー</th>
        </tr>
        <tr>
            <th>5000</th>
            <th>超人クリッカー</th>
        </tr>
        <tr>
            <th>10000</th>
            <th>達人クリッカー</th>
        </tr>
</body>
</html>