【Vue】第一个小项目“怪物杀手”

2024-04-02 18:12

本文主要是介绍【Vue】第一个小项目“怪物杀手”,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

实现效果:

  • 四个功能按键:攻击,技能,治疗,投降
  • 战斗日志:记录玩家和怪物的对战细节
  • 至少有一个血条归零时判断胜者(或平局),并出现重新开始游戏按钮
    在这里插入图片描述
    在这里插入图片描述

Javascript部分:

function getRandomValue(min, max) {return Math.floor(Math.random() * (max - min)) + min
}const app = Vue.createApp({data() {return {playerHealth: 100,monsterHealth: 100,currentRound: 0,winner: null,logMessages: [],}},computed: {//怪物血条计算monsterBarWidth() {if (this.monsterHealth < 0) {return { width: "0%" }}return "width:" + this.monsterHealth + "%"},//玩家血条计算playerBarWidth() {if (this.playerHealth < 0) {return { width: "0%" }}return "width:" + this.playerHealth + "%"},mayUseSpecialAttack() {return this.currentRound % 3 !== 0},},watch: {playerHealth(value) {if (value <= 0 && this.monsterHealth <= 0) {// 平局this.winner = "draw"} else if (value <= 0) {// 玩家失败this.winner = "monster"}},monsterHealth(value) {if (value <= 0 && this.playerHealth <= 0) {// 平局this.winner = "draw"} else if (value <= 0) {// 玩家获胜this.winner = "player"}},},methods: {//游戏重开 吧startGame() {this.playerHealth = 100this.monsterHealth = 100this.currentRound = 0this.winner = nullthis.logMessages = []},//普通攻击,伤害值5~12attackMonster() {this.currentRound++const attackValue = getRandomValue(5, 12)this.monsterHealth -= attackValuethis.addLogMessage("player", "attack", attackValue)this.attackPlayer()},//怪物攻击,伤害值8~15attackPlayer() {const attackValue = getRandomValue(8, 15)this.playerHealth -= attackValuethis.addLogMessage("monster", "attack", attackValue)},//技能,伤害值10~25,使用后有两回合冷却specialAttackMonster() {this.currentRound++const attackValue = getRandomValue(10, 25)this.monsterHealth -= attackValuethis.addLogMessage("player", "attack", attackValue)this.attackPlayer()},//治疗,8~20治疗值healPlayer() {this.currentRound++const healValue = getRandomValue(8, 20)if (this.playerHealth + healValue > 100) {this.playerHealth = 100} else {this.playerHealth += healValue}this.addLogMessage("player", "heal", healValue)this.attackPlayer()},//投降surrender() {this.winner = "monster"},//对战日志,最新战况插入数组头部addLogMessage(who, what, value) {this.logMessages.unshift({actionBy: who,actionType: what,actionValue: value,})},},
})app.mount("#game")

Html部分

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Vue Basics</title><linkhref="https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap"rel="stylesheet"/><link rel="stylesheet" href="styles.css" /><script src="https://unpkg.com/vue@3/dist/vue.global.js"></script><script src="app.js" defer></script></head><body><header><h1>Monster Slayer</h1></header><div id="game"><!-- 怪物血条 --><section id="monster" class="container"><h2>Monster Health</h2><div class="healthbar"><div class="healthbar__value" :style="monsterBarWidth"></div></div></section><!-- 玩家血条 --><section id="player" class="container"><h2>Your Health</h2><div class="healthbar"><div class="healthbar__value" :style="playerBarWidth"></div></div></section><!-- winner中有值(monster||player||draw)时出现游戏结束面板 --><section class="container" v-if="winner"><h2>Game Over!</h2><h3 v-if="winner == 'monster'">You lost!</h3><h3 v-else-if="winner == 'player'">You won!</h3><h3 v-else>It`s a draw!</h3><button @click="startGame">Star New Game</button></section><!-- winner还没出现,则显示四个功能按钮 --><section id="controls" v-else><button @click="attackMonster">ATTACK</button><button :disabled="mayUseSpecialAttack" @click="specialAttackMonster">SPECIAL ATTACK</button><button @click="healPlayer">HEAL</button><button @click="surrender">SURRENDER</button></section><!-- 对战日志 --><section id="log" class="container"><h2>Battle Log</h2><ul><li v-for="logMessage in logMessages"><span:class="{'log--player': logMessage.actionBy === 'player', 'log--monster': logMessage.actionBy === 'monster'}">{{ logMessage.actionBy === 'player' ? 'Player' : 'Monster'}}</span><span v-if="logMessage.actionType === 'heal'">heals himself for<span class="log--heal">{{ logMessage.actionValue }}</span></span><span v-else>attacks and deals<span class="log--damage">{{ logMessage.actionValue }}</span></span></li></ul></section></div></body>
</html>

这篇关于【Vue】第一个小项目“怪物杀手”的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/870704

相关文章

基于 Cursor 开发 Spring Boot 项目详细攻略

《基于Cursor开发SpringBoot项目详细攻略》Cursor是集成GPT4、Claude3.5等LLM的VSCode类AI编程工具,支持SpringBoot项目开发全流程,涵盖环境配... 目录cursor是什么?基于 Cursor 开发 Spring Boot 项目完整指南1. 环境准备2. 创建

Vue和React受控组件的区别小结

《Vue和React受控组件的区别小结》本文主要介绍了Vue和React受控组件的区别小结,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录背景React 的实现vue3 的实现写法一:直接修改事件参数写法二:通过ref引用 DOMVu

Java实现将HTML文件与字符串转换为图片

《Java实现将HTML文件与字符串转换为图片》在Java开发中,我们经常会遇到将HTML内容转换为图片的需求,本文小编就来和大家详细讲讲如何使用FreeSpire.DocforJava库来实现这一功... 目录前言核心实现:html 转图片完整代码场景 1:转换本地 HTML 文件为图片场景 2:转换 H

C#使用Spire.Doc for .NET实现HTML转Word的高效方案

《C#使用Spire.Docfor.NET实现HTML转Word的高效方案》在Web开发中,HTML内容的生成与处理是高频需求,然而,当用户需要将HTML页面或动态生成的HTML字符串转换为Wor... 目录引言一、html转Word的典型场景与挑战二、用 Spire.Doc 实现 HTML 转 Word1

Vue3绑定props默认值问题

《Vue3绑定props默认值问题》使用Vue3的defineProps配合TypeScript的interface定义props类型,并通过withDefaults设置默认值,使组件能安全访问传入的... 目录前言步骤步骤1:使用 defineProps 定义 Props步骤2:设置默认值总结前言使用T

Three.js构建一个 3D 商品展示空间完整实战项目

《Three.js构建一个3D商品展示空间完整实战项目》Three.js是一个强大的JavaScript库,专用于在Web浏览器中创建3D图形,:本文主要介绍Three.js构建一个3D商品展... 目录引言项目核心技术1. 项目架构与资源组织2. 多模型切换、交互热点绑定3. 移动端适配与帧率优化4. 可

sky-take-out项目中Redis的使用示例详解

《sky-take-out项目中Redis的使用示例详解》SpringCache是Spring的缓存抽象层,通过注解简化缓存管理,支持Redis等提供者,适用于方法结果缓存、更新和删除操作,但无法实现... 目录Spring Cache主要特性核心注解1.@Cacheable2.@CachePut3.@Ca

SpringBoot通过main方法启动web项目实践

《SpringBoot通过main方法启动web项目实践》SpringBoot通过SpringApplication.run()启动Web项目,自动推断应用类型,加载初始化器与监听器,配置Spring... 目录1. 启动入口:SpringApplication.run()2. SpringApplicat

Springboot项目构建时各种依赖详细介绍与依赖关系说明详解

《Springboot项目构建时各种依赖详细介绍与依赖关系说明详解》SpringBoot通过spring-boot-dependencies统一依赖版本管理,spring-boot-starter-w... 目录一、spring-boot-dependencies1.简介2. 内容概览3.核心内容结构4.

在ASP.NET项目中如何使用C#生成二维码

《在ASP.NET项目中如何使用C#生成二维码》二维码(QRCode)已广泛应用于网址分享,支付链接等场景,本文将以ASP.NET为示例,演示如何实现输入文本/URL,生成二维码,在线显示与下载的完整... 目录创建前端页面(Index.cshtml)后端二维码生成逻辑(Index.cshtml.cs)总结