Browse Source

add chatbot

root 2 years ago
parent
commit
d22cdfc252

BIN
fun/chat/ai-game/1/duck.png


+ 124 - 0
fun/chat/ai-game/1/index.html

@@ -0,0 +1,124 @@
+<body>
+    <h1>Duck Challenge</h1>
+    <div class="game">
+        <div id="duck"></div>
+        <div class="water"></div>
+        <div class="pad left">
+            <div class="lily"></div>
+        </div>
+        <div class="pad right">
+            <div class="lily"></div>
+        </div>
+    </div>
+    <div class="score">
+        <span>Score: </span><span id="score">0</span>
+    </div>
+    <p>Help the duck get to the other side by jumping from lily pad to lily pad!</p>
+</body>
+
+<style>
+    body {
+        background-color: #8ED2C9;
+        color: #2F4858;
+        font-family: sans-serif;
+        margin: 0;
+        text-align: center;
+    }
+
+    h1 {
+        margin: 0;
+        padding: 0.25em 0;
+    }
+
+    .game {
+        position: relative;
+        margin: 1em 0;
+    }
+
+    #duck {
+        width: 4em;
+        height: 4em;
+        background-image: url('duck.png');
+        position: absolute;
+        bottom: -2em;
+        left: 2em;
+        transition: left 2s;
+        z-index: 2;
+    }
+
+    .water {
+        width: 92%;
+        height: 2em;
+        margin-right: 4%;
+        background-color: #54A0FF;
+        position: absolute;
+        bottom: 0;
+        left: 0;
+    }
+
+    .pad {
+        position: absolute;
+        width: 8%;
+        left: 2%;
+        bottom: 8px;
+    }
+
+    .pad.left {
+        left: 0;
+    }
+
+    .pad.right {
+        left: 92%;
+    }
+
+    .lily {
+        width: 5em;
+        height: 5em;
+        border-radius: 5em;
+        background-color: #16A085;
+        position: absolute;
+        bottom: -3em;
+        left: 2em;
+    }
+
+    .score {
+        width: 70%;
+        margin: 1em auto 0;
+        font-weight: bold;
+        font-size: 1.2rem;
+    }
+
+    p {
+        font-size: 0.9rem;
+        margin: 0;
+        padding: 0.25em 0;
+    }
+</style>
+<script>
+    let score = 0;
+    let leftPad, rightPad;
+
+    document.addEventListener("DOMContentLoaded", function () {
+        rightPad = document.querySelector(".pad.right")
+        leftPad = document.querySelector(".pad.left")
+
+        leftPad.addEventListener("click", duckJumpLeft);
+        rightPad.addEventListener("click", duckJumpRight);
+    });
+
+    let duckJumpLeft = function () {
+        document.querySelector("#duck").style.left = "2%";
+        score++;
+        updateScore(score);
+    }
+
+    let duckJumpRight = function () {
+        document.querySelector("#duck").style.left = "92%";
+        score++;
+        updateScore(score);
+    }
+
+    let updateScore = function (newScore) {
+        document.querySelector("#score").innerHTML = newScore;
+    }
+</script>

+ 73 - 0
fun/chat/ai-game/2/index.html

@@ -0,0 +1,73 @@
+<title> Disaster Game </title>
+<script>
+    var userHealth = 100;
+    var enemyHealth = 100;
+
+    //Function to damage the players
+    function damagePlayer(player, amount) {
+        player.health -= amount;
+    }
+
+    //Function to display the health of the players
+    function displayPlayerHealth() {
+        document.getElementById("userHealth").innerHTML = "Your Health: " + userHealth + "<br>";
+        document.getElementById("enemyHealth").innerHTML = "Enemy Health: " + enemyHealth;
+    }
+
+    //Function to start the game
+    function startGame() {
+        document.getElementById("game").style.visibility = "visible";
+        document.getElementById("start").style.visibility = "hidden";
+    }
+
+    //Function to attack the enemy
+    function attack() {
+        var userAttack = Math.floor(Math.random() * 10) + 1;
+
+        enemyHealth -= userAttack;
+        document.getElementById("status").innerHTML = "You hit the enemy for " + userAttack + " damage."
+        //Display enemy health
+        displayPlayerHealth()
+        //Check if enemy health is 0
+        if (enemyHealth <= 0) {
+            alert("You win!")
+            resetGame()
+        } else {
+            //Enemy attacks
+            var enemyAttack = Math.floor(Math.random() * 8) + 1
+            userHealth -= enemyAttack;
+            document.getElementById("status").innerHTML += "<br>" + "The enemy hits you for " + enemyAttack + " damage."
+            //Display user health
+            displayPlayerHealth()
+            //Check if user health is 0
+            if (userHealth <= 0) {
+                alert("You lose!")
+                resetGame()
+            }
+        }
+    }
+
+    //Function to reset the game
+    function resetGame() {
+        userHealth = 100
+        enemyHealth = 100
+        document.getElementById("game").style.visibility = "hidden";
+        document.getElementById("start").style.visibility = "visible";
+        document.getElementById("status").innerHTML = "";
+    }
+</script>
+
+
+
+
+<h1> Disaster Game </h1>
+<div id="start">
+    <button onclick="startGame()"> Start the Game </button>
+</div>
+
+<div id="game" style="visibility:hidden;">
+    <div id="userHealth"> Your Health: 100 </div>
+    <div id="enemyHealth"> Enemy Health: 100 </div>
+    <button onclick="attack()"> Attack! </button>
+    <div id="status"></div>
+</div>

+ 1 - 0
fun/chat/ai-game/index.html

@@ -0,0 +1 @@
+<a href="1">1</a>   <a href="2">2</a>

+ 5 - 1
fun/chat/index.html

@@ -29,7 +29,7 @@
                 running = 0;
             })
         }
-        $(function(){
+        $(function () {
             $("#chatInput").keydown(function (e) {
                 if (e.keyCode == 13) {
                     $("#chatBtn")[0].click();
@@ -76,5 +76,9 @@
             <div class="well frame">
             </div>
         </div>
+        <div class="col-lg-2 col-md-2 col-xs-12">
+            <a class="btn btn-info" id="chat" href="ai-game/"><span
+                    class="glyphicon glyphicon-comment"></span>&nbsp;&nbsp;AI 设计的小游戏</a>
+        </div>
     </div>
 </body>