4 <meta charset="utf-8" />
5 <title>lol stats</title>
8 font-family: 'Noto Sans SC', sans-serif;
10 background-color: black;
17 background-color: rgb(200, 50, 50);
18 box-shadow: 0 0 400px rgba(0, 0, 0, 0.6) inset;
20 input, select, button {
27 transform: translate(-50%, -50%);
32 transform: translate(-50%, 0%);
33 width: calc(100% - 20px);
37 animation: startup 0.3s forwards linear;
41 transform: translate(-50%, 0%);
42 width: calc(100% - 20px);
46 transform: translate(-50%, -50%);
54 transform: translate(-50%, -50%);
57 background-color: transparent;
63 text-shadow: 1px 1px 40px black;
67 width: calc(100% - 20px);
69 background-color: white;
71 box-shadow: 1px 1px 40px black;
80 padding: 0px 0px 0px 10px;
83 background-color: rgb(200, 50, 50);
88 text-transform: uppercase;
96 border-bottom: 1px solid lightgray;
99 width: calc(100% - 220px - 10px);
107 vertical-align: baseline;
111 background-color: rgb(200, 50, 50);
128 @keyframes slideleft {
136 @keyframes slideright {
145 animation: slideup 0.3s forwards linear;
148 animation: slideleft 0.3s forwards linear;
151 animation: slideright 0.3s forwards linear;
160 transform: translate(-50%, 0%);
161 width: calc(100% - 20px);
166 background-color: white;
173 left: calc(100% + 20px);
174 background-color: white;
184 <link href="https://fonts.googleapis.com/css?family=Noto+Sans+SC:700" rel="stylesheet">
185 <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
186 <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
187 <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.js"></script>
188 <script src="https://code.jquery.com/jquery-3.3.1.js"></script>
193 <!-- Start Screen -->
197 <span id="title">Enter Your Summoner Name</span>
199 <div id="inputpanel">
200 <select id="regionselect" v-model="region">
201 <option v-for="r in regions" :value="r">{{ r }}</option>
203 <input v-on:keyup.enter="startToHistory" id="nameinput" v-model="summoner" type="text">
204 <button v-on:click="startToHistory" id="gobutton"><span class="fas fa-arrow-right"></span></button>
209 <div id="matchhistory" style="display: none">
210 <button v-on:click="historyToStats">Stats pls..</button>
211 <p>hallo hier ist match history live mit {{ summoner }} aus {{ region }}</p>
212 <p>hallo hier ist match history live mit {{ summoner }} aus {{ region }}</p>
213 <p>hallo hier ist match history live mit {{ summoner }} aus {{ region }}</p>
214 <p>hallo hier ist match history live mit {{ summoner }} aus {{ region }}</p>
215 <p>hallo hier ist match history live mit {{ summoner }} aus {{ region }}</p>
216 <p>hallo hier ist match history live mit {{ summoner }} aus {{ region }}</p>
217 <p>hallo hier ist match history live mit {{ summoner }} aus {{ region }}</p>
219 <div id="stats" style="display: none">
220 <button v-on:click="statsToHistory">History pls..</button>
221 <p>hallo hier ist stats history live mit {{ summoner }} aus {{ region }}</p>
222 <p>hallo hier ist stats history live mit {{ summoner }} aus {{ region }}</p>
223 <p>hallo hier ist stats history live mit {{ summoner }} aus {{ region }}</p>
224 <p>hallo hier ist stats history live mit {{ summoner }} aus {{ region }}</p>
225 <p>hallo hier ist stats history live mit {{ summoner }} aus {{ region }}</p>
226 <p>hallo hier ist stats history live mit {{ summoner }} aus {{ region }}</p>
227 <p>hallo hier ist stats history live mit {{ summoner }} aus {{ region }}</p>
233 <!-- Vue.js Script -->
234 <script src="script.js"></script>