index.ejs
4.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><%= title %></title>
<link rel="icon" href = "FindMelogo.png">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<style> @import url("http://fonts.googleapis.com/earlyaccess/nanumgothic.css");</style>
<script>
$(document).ready(function(){
$("button#searchButton").click(function(){
var name = $("input").val();
location.href = "http://localhost:3000/search/" + name;
})
});
</script>
</head>
<body>
<div class="imgOpacity">
<div class="center">
<img src= "/FindMelogo.png" width = 150, height = 150/>
</div>
<div class="center2">
<input type="text" class="input_text" placeholder="소환사 이름">
<span class="input-group-btn">
<button id="searchButton" class="btn btn-primary" type="button" onclick="search(name)">click!</button>
</span>
</div>
</div>
<br></br>
<font size=10em>
<strong>
<%= c_summoner + "\n"%>
</strong>
</font>
<br></br>
<br></br>
<table class="basic", width="500">
<tbody>
<tr><td><font size = 5em>
<strong>
<%= "솔로 랭크"%>
</strong>
</font></td>
<td><font size = 5em>
<strong>
<%= "자유 랭크"%>
</strong>
</font></td></tr>
<tr>
<td><img src= <%=c_imgtier_S%> width=120, height=120></td>
<td><img src= <%=c_imgtier_F%> width=120, height=120></td>
</tr>
<tr>
<td><%= "Tier : " + c_tier_S + " " + c_rank_S + " / " + c_leaguePoint_S + "점"%></td>
<td><%= "Tier : " + c_tier_F + " " + c_rank_F + " / " + c_leaguePoint_F + "점"%></td>
</tr>
<tr>
<td><%= "Win : " + c_wins_S + " / Lose : " + c_losses_S%></td>
<td><%= "Win : " + c_wins_F + " / Lose : " + c_losses_F%></td>
</tr>
<tr>
<td><%= "승률 : " + ((c_wins_S/(c_wins_S+c_losses_S))*100).toFixed(2) + "%" %></td>
<td><%= "승률 : " + ((c_wins_F/(c_wins_F+c_losses_F))*100).toFixed(2) + "%" %></td>
</tr>
<tr>
<td><%= "캐리력 : " + (c_wins_S/c_losses_S*2).toFixed(2) %></td>
<td><%= "캐리력 : " + (c_wins_F/c_losses_S*2).toFixed(2) %></td>
</tr>
</tbody>
</table>
<br></br>
<div class="center">
<strong>
<%= "로테이션 챔피언: " %>
</strong>
<% for (var i=0; i<c_rotation.length-1; i++){ %>
<img src= <%=c_rotation[i]%> width=50, height=50>
<% } %>
</div>
<br></br>
</div>
<div class="center">
<strong>
<%= "추측 MMR(솔로랭크):" %>
<%if (c_tier_S=="SILVER") {%>
<%="1200~1500"%>
<%}%>
<%if (c_tier_S=="GOLD") {%>
<%="1500~1800"%>
<%}%>
<%if (c_tier_S=="PLATINUM") {%>
<%="1800~2100"%>
<%}%>
<%if (c_tier_S=="DIAMOND") {%>
<%="2100~2400"%>
<%}%>
<%if (c_tier_S=="MASTER") {%>
<%="2400~2600"%>
<%}%>
<%if (c_tier_S=="GRANDMASTER") {%>
<%="2600~2800"%>
<%}%>
<%if (c_tier_S=="CHALLENGER") {%>
<%=">3000"%>
<%}%>
</strong>
</div>
<% for (var i=0; i<6; i++){ %>
<div class="champImage">
<div class="center">
<input type="image" src=<%=c_pic[i]%> onClick="location.href='http://localhost:3000/data/'+ '<%=c_name[i]%>'">
<B>
<%= c_korname[i] %>
</B>
<%= "point: " + c_point[i]+ " \tchampion level: " + c_lev[i] %>
<% } %>
</div>
</div>
</div>
</font>
</body>
</html>