function randon_word(Arr) { let infer = Math.round(Math.random() * Arr.length); return Arr[infer]; } //功能2,控制小人 function mancontrol(falsec){ $(".figure-part").eq(falsec).css("display","block"); } //功能3,字母重复输入提醒 function notify(){ $(".notification").animate({"bottom":"-20px"},500); setTimeout(function(){ $(".notification").animate({"bottom":"-80px"},500); },2000); } //功能4,通关成功与失败提醒 function playAgain(word,flag){ $(".pop").css("display","block"); if(flag){ $(".pop .final-message").text("Congratulation you win. ??"); } else{ $(".pop .final-message").text("Unfortunately you lost. ??"); $(".pop .reval-word-message").text("...the word was:"+word); } }
时间: 2024-03-29 12:37:40 浏览: 54
matlab.rar_donesgo_random_randon helper
这段 JavaScript 代码实现了猜单词游戏中的一些功能:
1. `random_word(Arr)` 函数用于从一个单词列表中随机选择一个单词,并返回该单词。
2. `mancontrol(falsec)` 函数用于控制游戏界面中的小人图像,根据玩家猜错的次数,显示相应的小人图像。
3. `notify()` 函数用于实现字母重复输入时的提醒,它会在页面底部弹出一个提示框,告知玩家不要重复输入已经猜过的字母。
4. `playAgain(word,flag)` 函数用于在游戏结束时弹出提示框,告知玩家游戏结果。如果玩家成功猜出单词,提示框会显示“Congratulation you win.”,否则提示框会显示“Unfortunately you lost.”,并显示正确的单词。
阅读全文