parent
8c1139d380
commit
72cd31761f
@ -1,6 +0,0 @@
|
|||||||
|
|
||||||
if (this.selectedGeneration === "all" && this.selectedType === "all" && this.searchTerm === "") return this.pokemons;
|
|
||||||
if (this.selectedGeneration === "all" && this.selectedType === "all") return this.pokemons.filter((pokemon) => pokemon.Name.toLowerCase().includes(this.searchTerm));
|
|
||||||
if (this.selectedGeneration === "all") return this.pokemons.filter((pokemon) =>pokemon.Tipoc.includes(this.selectedType) && pokemon.Name.toLowerCase().includes(this.searchTerm));
|
|
||||||
if (this.selectedType === "all") return this.pokemons.filter((pokemon) => pokemon.Geracaoc === parseInt(this.selectedGeneration) && pokemon.Name.toLowerCase().includes(this.searchTerm));
|
|
||||||
return this.pokemons.filter((pokemon) => pokemon.Geracaoc === parseInt(this.selectedGeneration) && pokemon.Tipoc.includes(this.selectedType) && pokemon.Name.toLowerCase().includes(this.searchTerm));
|
|
@ -1,133 +0,0 @@
|
|||||||
body
|
|
||||||
{
|
|
||||||
text-align: center;
|
|
||||||
background-color: #071c24;
|
|
||||||
position: absolute;
|
|
||||||
margin: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
align-content:center;
|
|
||||||
font-family: 'Eczar', serif;
|
|
||||||
font-weight: bold;
|
|
||||||
background-image:url(https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/firstbloodsplash.png);
|
|
||||||
background-size:100%;
|
|
||||||
background-position:0% 30%;
|
|
||||||
background-repeat:no-repeat;
|
|
||||||
}
|
|
||||||
.container
|
|
||||||
{
|
|
||||||
width:70vw;
|
|
||||||
height:40vh;
|
|
||||||
position:relative;
|
|
||||||
top:50%;
|
|
||||||
left:50%;
|
|
||||||
transform:translate(-50%, -50%);
|
|
||||||
display:flex;
|
|
||||||
}
|
|
||||||
.card
|
|
||||||
{
|
|
||||||
background-color:ivory;
|
|
||||||
height:100%;
|
|
||||||
width: 24%;
|
|
||||||
background-size:100% 100%;
|
|
||||||
background-repeat:no-repeat;
|
|
||||||
}
|
|
||||||
.sumBox
|
|
||||||
{
|
|
||||||
position:relative;
|
|
||||||
top:70%;
|
|
||||||
}
|
|
||||||
.sums
|
|
||||||
{
|
|
||||||
height:11%;
|
|
||||||
aspect-ratio: 1;
|
|
||||||
background-color:ivory;
|
|
||||||
display:inline-block;
|
|
||||||
position:relative;
|
|
||||||
top:80%;
|
|
||||||
border: 2px solid #95792f;
|
|
||||||
background-size:100%;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
.name
|
|
||||||
{
|
|
||||||
position:relative;
|
|
||||||
color:#95792f;
|
|
||||||
top:93%;
|
|
||||||
}
|
|
||||||
.stats
|
|
||||||
{
|
|
||||||
position:relative;
|
|
||||||
top:25%;
|
|
||||||
width:50%;
|
|
||||||
display:flex;
|
|
||||||
}
|
|
||||||
.stats h3
|
|
||||||
{
|
|
||||||
color:#0F9C94;
|
|
||||||
}
|
|
||||||
.statA
|
|
||||||
{
|
|
||||||
width:50%;
|
|
||||||
text-align:left;
|
|
||||||
margin-left:5%;
|
|
||||||
}
|
|
||||||
.statB
|
|
||||||
{
|
|
||||||
width:50%;
|
|
||||||
text-align:right;
|
|
||||||
margin-right:5%;
|
|
||||||
}
|
|
||||||
#cardA:after
|
|
||||||
{
|
|
||||||
content:'';
|
|
||||||
display:inline-block;
|
|
||||||
height:105%;
|
|
||||||
width: 115%;
|
|
||||||
position:relative;
|
|
||||||
top:-20%;
|
|
||||||
left:-7.5%;
|
|
||||||
background-size:225% 135%;
|
|
||||||
background-repeat:no-repeat;
|
|
||||||
}
|
|
||||||
#cardB:after
|
|
||||||
{
|
|
||||||
content:'';
|
|
||||||
display:inline-block;
|
|
||||||
height:105%;
|
|
||||||
width: 115%;
|
|
||||||
position:relative;
|
|
||||||
top:-20%;
|
|
||||||
left:-7.5%;
|
|
||||||
background-size:225% 135%;
|
|
||||||
background-repeat:no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Going to js*/
|
|
||||||
#cardA
|
|
||||||
{
|
|
||||||
background-image: url("http://ddragon.leagueoflegends.com/cdn/img/champion/loading/Caitlyn_29.jpg");
|
|
||||||
}
|
|
||||||
#cardA:after
|
|
||||||
{
|
|
||||||
background-image:url("https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas11.png");
|
|
||||||
background-position:-0.5vw 13%;
|
|
||||||
}
|
|
||||||
#cardB
|
|
||||||
{
|
|
||||||
background-image: url("http://ddragon.leagueoflegends.com/cdn/img/champion/loading/Ezreal_0.jpg");
|
|
||||||
|
|
||||||
}
|
|
||||||
#cardB:after
|
|
||||||
{
|
|
||||||
background-image:url("https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas8.png");
|
|
||||||
background-position:-19.5vw 13%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* #sumsAD #sumsAF #sumsBD #sumsBF For all of this*/
|
|
||||||
|
|
||||||
.justToTest{
|
|
||||||
background-image:url("http://ddragon.leagueoflegends.com/cdn/13.7.1/img/spell/SummonerDot.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Gone to js ^*/
|
|
@ -1,26 +0,0 @@
|
|||||||
var Positions =
|
|
||||||
{
|
|
||||||
iron:'-0vw 14.5%',
|
|
||||||
bronze:'-19vw 14.5%',
|
|
||||||
silver:'-0vw 13%',
|
|
||||||
gold:'-19.5vw 13%',
|
|
||||||
platinium:'-0vw 13%',
|
|
||||||
diamond:'-19.5vw 13%',
|
|
||||||
master:'-0vw 13%;',
|
|
||||||
grandmaster:'-20vw 13%',
|
|
||||||
challenger:'-0.5vw 13%',
|
|
||||||
nothing:''
|
|
||||||
}
|
|
||||||
var src_s =
|
|
||||||
{
|
|
||||||
iron:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas7.png',
|
|
||||||
bronze:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas7.png',
|
|
||||||
silver:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas8.png',
|
|
||||||
gold:'0https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas8.png',
|
|
||||||
platinium:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas4.png',
|
|
||||||
diamond:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas4.png',
|
|
||||||
master:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas10.png',
|
|
||||||
grandmaster:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas10.png',
|
|
||||||
challenger:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas11.png',
|
|
||||||
nothing:'',
|
|
||||||
}
|
|
@ -1,45 +0,0 @@
|
|||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
|
|
||||||
<meta name="generator" content="2018.1.0.386"/>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
||||||
<link rel="shortcut icon" href="../images/favicon.ico"/>
|
|
||||||
<title>Game</title>
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/game.css" id="pagesheet"/>
|
|
||||||
<script src='../js/game.js'></script>
|
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="container">
|
|
||||||
<div id="cardA" class="card">
|
|
||||||
<span class="name"> hc12</span><!-- JS -->
|
|
||||||
<div class="sumBox">
|
|
||||||
<div id="sumsAD" class="sums justToTest"> </div><!-- JS -->
|
|
||||||
<div id="sumsAF" class ="sums justToTest"></div><!-- JS -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="stats">
|
|
||||||
<div class="statA">
|
|
||||||
<h3>K/D</h3>
|
|
||||||
<span class="KDA">1/0</span> <!-- JS -->
|
|
||||||
<h3>CS</h3>
|
|
||||||
<span class="CSA">90</span> <!-- JS -->
|
|
||||||
</div>
|
|
||||||
<div class="statB">
|
|
||||||
<h3>K/D</h3>
|
|
||||||
<span class="KDB">1/0</span> <!-- JS -->
|
|
||||||
<h3>CS</h3>
|
|
||||||
<span class="CSB">90</span> <!-- JS -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div id="cardB" class="card">
|
|
||||||
<span class="name"> Ezreal Bot</span> <!-- JS -->
|
|
||||||
<div class="sumBox">
|
|
||||||
<div id="sumsBD" class="sums justToTest"> </div> <!-- JS-->
|
|
||||||
<div id="sumsBF"class ="sums justToTest"></div> <!-- JS -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Reference in new issue