Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ClauCelis committed Dec 5, 2024
0 parents commit 2bf2ae7
Show file tree
Hide file tree
Showing 26 changed files with 3,117 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.firebase
/.firebaserc
/firebase.json
/node_modules
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar"]
}
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Juego: ¡Adivina el Pokémon!
Juego de adivinanza donde se muestran 20 siluetas de pokemones al azar. Al ingresar el nombre correcto esta silueta se descubre en la imagen.

## Características:
* El usuario intenta descubrir y adivinar cada Pokémon por medio de un input debajo de cada una de las imágenes.
* En caso de que sea incorrecto, un mensaje le notifica el error.
* En caso de que sea correcto, el Pokémon se descubre, desapareciendo el campo de input y el botón "Descubrir".
* Un contador muestra la cantidad de Pokémon descubiertos hasta el momento.

https://uxfol.io/p/7543e3ab/new-page



# Vue 3 + Vite

This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

Learn more about IDE Support for Vue in the [Vue Docs Scaling up Guide](https://vuejs.org/guide/scaling-up/tooling.html#ide-support).
Binary file added dist/assets/fondo-BqECOi1L.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions dist/assets/index-DX4uDkow.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/assets/index-bDzIJeLz.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added dist/assets/pokemon_logo-V0qt3qAR.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/Juego_Pokemon/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue</title>
<script type="module" crossorigin src="/Juego_Pokemon/assets/index-DX4uDkow.js"></script>
<link rel="stylesheet" crossorigin href="/Juego_Pokemon/assets/index-bDzIJeLz.css">
</head>
<body>
<div id="app"></div>
</body>
</html>
1 change: 1 addition & 0 deletions dist/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
Loading

0 comments on commit 2bf2ae7

Please sign in to comment.