Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이정호
/
lolhelper
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
이정호
2020-06-12 15:48:31 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2b9091246f4082e399008a449b847c91aa1b68f1
2b909124
1 parent
3a49148f
css edited
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
11 deletions
LOL_Helper/ReadMe.md
LOL_Helper/router/Test.js
LOL_Helper/router/main.js
LOL_Helper/views/index.ejs
LOL_Helper/ReadMe.md
View file @
2b90912
...
...
@@ -3,7 +3,7 @@
## 개발 목표
-
`Riot Games Api`
를 통한 리그오브레전드
정보
사이트 만들기
-
`Riot Games Api`
를 통한 리그오브레전드
전적검색
사이트 만들기
## 활용 가능한 데이터 `(API_KEY Required.)`
...
...
@@ -38,16 +38,16 @@
-
뉴비를 위한 무료 챔피언 -
`freeChampionIdsForNewPlayers`
## 개발 히스토리
-
20
19-11-17
-
첫 미팅,
개발툴 및 환경 설정, 주제 선정
-
20
20-05-14
-
개발툴 및 환경 설정, 주제 선정
-
20
19-11-23
-
20
20-06-04
-
마더 프로젝트 오류 수정, API키 요청 -> 마더 프로젝트 실행가능
-
20
19-11-28
-
css 수정,
챔피언 로테이션 API추가, 캐리력 MMR
추가
-
20
20-06-06
-
css 수정,
전적 검색 기능
추가
-
20
19-12-04
-
20
20-06-
-
최종 미팅, 프로젝트 점검 및 발표자료 작성
...
...
LOL_Helper/router/Test.js
View file @
2b90912
...
...
@@ -13,7 +13,7 @@ module.exports = function(app) {
var
request
=
require
(
"request"
);
var
urlenconde
=
require
(
'urlencode'
);
var
apikey
=
"RGAPI-
a0598a8a-a326-4c0d-a115-3f0ae332e86f
"
;
//api
var
apikey
=
"RGAPI-
99907b0b-aeeb-4ea0-9450-c4758fb672c1
"
;
//api
var
profileIconId
;
//아이콘 번호
var
revisionDate
;
//수정날짜
...
...
LOL_Helper/router/main.js
View file @
2b90912
...
...
@@ -2,7 +2,7 @@ module.exports = function(app){
var
request
=
require
(
"request"
);
var
urlenconde
=
require
(
'urlencode'
);
var
apikey
=
"RGAPI-
a0598a8a-a326-4c0d-a115-3f0ae332e86f
"
//api
var
apikey
=
"RGAPI-
99907b0b-aeeb-4ea0-9450-c4758fb672c1
"
//api
var
profileIconId
;
//아이콘 번호
var
revisionDate
;
//수정날짜
...
...
LOL_Helper/views/index.ejs
View file @
2b90912
...
...
@@ -53,18 +53,42 @@
<img
src=
<%=c_rotation[i]%
>
width=50, height=50>
<
% } %>
</div>
<b>
<font
size =
5em
>
<br></br>
<
% for (var i = 0; i
< 10
;
i
++){
%
>
<
% if (c_win[i]) { %>
<span
style =
"color:blue"
>
<
%= "승리" %>
</span>
<
% } %>
<
% if (!c_win[i]) { %>
<span
style =
"color:red"
>
<
%= "패배" %>
</span>
<
% } %>
<img
src=
<%=
c_pic
[
i
]%
>
width = 50, height = 50>
<
%= c_kills[i] + " / " %>
<span
style =
"color:red"
>
<
%= c_deaths[i] %>
</span>
<
%= " / " + c_assists[i] %>
<
%= "\t평점 : " %>
<
% if (c_deaths[i] == 0) { %>
<span
style =
"color:blue"
>
<
%= "Perfect" %>
</span>
<
% } %>
<
% if (c_deaths[i] != 0) { %>
<
%= ((c_kills[i] + c_assists[i]) / c_deaths[i]).toFixed(2) %>
<
% } %>
<img
src=
<%=
c_pic
[
i
]%
>
width=50, height=50>
<
%= c_kills[i] + " / " + c_deaths[i] + " / " + c_assists[i] %>
<br></br>
<
% } %>
</b>
</font>
</div>
</body>
</html>
\ No newline at end of file
...
...
Please
register
or
login
to post a comment